im going to use a AspxSplitter to set the content url in javascript and when i press a button then it will automatically change the content in splitter. but the problem that i had facing is that after i set the contentUrl in javascript but it will not refresh the content in splitter. thanks
function ActiveTabChanged(e) {
var index = e.item.name;
if (index == "menu2") {
var pane = ContactTab.GetPaneByName('pane1')
// ContactTab.GetPaneByName('pane1').SetContentUrl("Default.aspx");
pane.SetContentUrl("Default.aspx");
pane.RefreshContentUrl();
}
}
here is my splitter setting
<dx:SplitterPane Name="pane1">
<ContentCollection>
<dx:SplitterContentControl>
</dx:SplitterContentControl>
</ContentCollection>
</dx:SplitterPane>