or

var locations = new kendo.data.DataSource({ schema: { model: { id: "Id" } }, transport: { read: { url: '/Org/Locations', datatype: 'json', type: 'GET' } }});var homeModel = new kendo.observable({ organiztion: organizations, location: locations, selectedOrg: null, selectedlocation: null,});<input name="Locations" data-role="dropdownlist" data-bind="source: location,value: selectedLocation, attr:{org:OrganizationId}," data-value-primitive="true" data-text-field="Name" data-value-field="Id" /><?xml version="1.0" encoding="utf-8" ?><siteMap> <siteMapNode title="Home" controller="Home" action="index"> <siteMapNode title="Dashboard" controller="MyController" action="index" /> <siteMapNode title="My Future" controller="MyController" action="Input" /> <siteMapNode title="My Retirement" controller="MyController" action="Input" /> <siteMapNode title="System"> <siteMapNode title="Profile" controller="MyController" action="Profile" /> <siteMapNode title="Income and Expenses" controller="MyController" action="IncomeAndExpenses" /> <siteMapNode title="Assets and Liabilities" controller="MyController" action="AssetsAndLiabilities" /> <siteMapNode title="Insurance" controller="MyController" action="Insurance" /> <siteMapNode title="Bootstrap"> <siteMapNode title="Typography" controller="system" action="Typography" /> </siteMapNode> </siteMapNode> </siteMapNode></siteMap>if (!SiteMapManager.SiteMaps.ContainsKey("main")){ SiteMapManager.SiteMaps.Register<XmlSiteMap>("main", sitemenu => sitemenu.LoadFrom("~/Utilities/Sitemaps/Main.sitemap"));}