My page has an xml component inside a RadAjaxPanel, as below:
<telerik:RadAjaxPanel ID="XmlViewPanel" runat="server" Height="200px" Width="300px">
<asp:Xml ID="xmlView" runat="server"></asp:Xml>
</telerik:RadAjaxPanel>
I also have a RadTreeView that uses LoadOnDemand (TreeNodeExpandMode.ServerSideCallBack) and when the clicks a treeview node that has no children, some xml is loaded into the component, as below:
xmlView.DocumentContent = "<?xml version=\"1.0\" encoding=\"utf-8\"?><root>" + node.InnerXml + "</root>";
How do I get the RadAjaxPanel to update its client Xml component, and cause the xml text to appear?
An example would be great. Thanks
Chris