How can I navigate to a section programmatically?
My goal is to have the drilldown menu reflect the current page the user is on.
So, when the page loads, the menu navigates to the corresponding location.
Any ideas?
Hello,I have just browsed through the client-side object model (CSOM) and unfortunately there is no public method for selecting an item and performing its respective action. I also could not find any privde methods to do so with the debugger.What is your scenario? If you want to programmatically navigate to a page that is available in the menu as well, you can use the client-side window.location.href = "mypage.aspx"or the server-side Page.Response.Redirect to emulate page redirection.