I have a webpage with a RadTreeView inside an RadAjaxPanel, and it has a contextmenu. In this contextMenu, there is an item called "EDIT ITEM", that opens a RadWindow where I can edit something.
On my webpage I also have and RadAjaxmanager.
When I return from the RadWindow, I want to update the RadTreeView inside the RadAjaxPanel.
I have this code in the ASPX-page:
<telerik:RadCodeBlock ID="cb1" runat="server">
<script type="text/javascript">
function pageReturning(arguments)
{
var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");
ajaxManager.ajaxRequest("VisDet");
}
</script>
</telerik:RadCodeBlock>
In the code behind I have a method that is called, and that is working, because I have tried to add an Response.Redirect, and the method is called. But when I (inside that method) tries to update the radTreeView, then nothing happens.
Please help. I am getting frustrated, and I have use almost 2-3 days on that problem.
Søren