Hello,
I use a panel bar to load content from a partial view which receives an id to display some informations based on it. Is it possible to reload a pane with different id using? I want something like this:
<script>
function loadDetails(id) {
// get a reference to the panel bar
var panelBar = $("#panelbar").data("kendoPanelBar");
// reload the panel bar
panelBar.reload("#paneWithAjax", new {id = id});
}
</script>
The panel bar has a pane added with
.LoadContentFrom("ShowDetails", "Controller", new {id = id})
Regards
I use a panel bar to load content from a partial view which receives an id to display some informations based on it. Is it possible to reload a pane with different id using? I want something like this:
<script>
function loadDetails(id) {
// get a reference to the panel bar
var panelBar = $("#panelbar").data("kendoPanelBar");
// reload the panel bar
panelBar.reload("#paneWithAjax", new {id = id});
}
</script>
The panel bar has a pane added with
.LoadContentFrom("ShowDetails", "Controller", new {id = id})
Regards