Hi All:
This is what I came up with.
<script>
var
router =
new
kendo.Router({ pushState:
true
, root:
"/L/Router02.aspx?"
});
$(
function
() {
router.start();
router.route(
"/:id/:detailId"
,
function
(id, detailId, params) {
console.log(router.root,
" item id: "
, id,
" detail: "
, detailId);
});
router.start();
});
</script>
Phil