or
When the treeview is loaded, the folderXX aren't displayed yet. If I click on the "folder1" of "rootNode1" -> I get the values of the "folder2". If I remove my custom templates, it works perfectly.
Do you have any idea where does that come from?
<telerik:ChartSeries Name="Pending Reviews" Type="StackedBar" ActiveRegionToolTip="Click to see pending reviews" DataYColumn="Modality" DataXColumn="Pending Reviews"><telerik:RadAjaxManager ID="ajaxManager" runat="server" DefaultLoadingPanelID="ajaxLoadingPanel" > </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="ajaxLoadingPanel" runat="server" Skin="" Transparency="20" InitialDelayTime="100" MinDisplayTime="500"> <div style="background-position: center center; background: url('../Images/loading.gif') no-repeat center center; background-color: #F0F0F0; height:100%; width:100%;"></div> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxLoadingPanel ID="ajaxLoadingPanel_blank" runat="server" Skin="" Transparency="20" InitialDelayTime="100" MinDisplayTime="500"> <div></div> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxManagerProxy ID="ajaxManagerProxy" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="divHomeControls"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="divHomeControls" LoadingPanelID="ajaxLoadingPanel_blank" /> <telerik:AjaxUpdatedControl ControlID="divPrevNext" /> <telerik:AjaxUpdatedControl ControlID="pnlGrid" /> <telerik:AjaxUpdatedControl ControlID="divHistory" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="divPrevNext"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="pnlGrid" /> <telerik:AjaxUpdatedControl ControlID="divHistory" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="pnlGrid"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="divHistory" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManagerProxy> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td valign="top" colspan="2"> <div id="divHomeControls" style="float:left;text-align:center;vertical-align:middle;padding:4px 0px 0px 0px" runat="server"> <table border="0" cellpadding="0" cellspacing="0"> <tr> <td> <span style="padding-right:10px;">Current Product File:</span> <span style="padding-right:10px;"><asp:Label ID="lblHomePIL" runat="server" CssClass="SearchControl"></asp:Label> </span> <span style="text-align:right;padding-right:10px;">Issue Date:</span> </td> <td> <span style="text-align:left;padding-right:10px;"> <telerik:RadDatePicker ID="dateChooserIssueDate" runat="server" AutoPostBack="True" onselecteddatechanged="dateChooserIssueDate_SelectedDateChanged" Width="100px" Culture="English (United States)" Visible="True" Skin="Outlook"> <DateInput DisplayDateFormat="M/d/yyyy" DateFormat="M/d/yyyy" AutoPostBack="True" Width="100%" CssClass="SearchControl"></DateInput> <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="Hello" Width="200px"></Calendar> <DatePopupButton ImageUrl="" HoverImageUrl="" Visible="True"></DatePopupButton> </telerik:RadDatePicker> </span> </td> <td align="right"><span style="text-align:right;padding-right:10px;">Issue #:</span></td> <td align="left"><span style="text-align:right;padding-right:10px;"><asp:Literal ID="litIssueNumber" runat="server"></asp:Literal></span></td> </tr> </table> </div> </td> </tr> <tr> <td valign="top" colspan="2"> <div id="divPrevNext" runat="server" style="margin:10px 0px 0px 0px; padding:10px; background:#f8fcff; border:1px solid #ccc;" > <table border="0" cellpadding="0" cellspacing="0"><tr> <td width="20px"><asp:Literal runat="server" ID="btnPrevItem"/></td> <td width="100%" style="text-align:center;vertical-align:middle;padding:4px 0px 4px 0px"><asp:Literal ID="litTitle" runat="server"></asp:Literal></td> <td width="20px" align="right"><asp:Literal runat="server" ID="btnNextItem"/></td> </tr></table> </div> </td> </tr> <tr> <td> <table> <tr> <td valign="top"> <asp:Panel id="pnlGrid" runat="server"> <span style="display:inline;"><asp:Label ID="lblUpdateStatus" runat="server" EnableViewState="False"></asp:Label></span> <edf:EdfItemDetailsGrid ID="edfItemDetailsGrid" runat="server"></edf:EdfItemDetailsGrid> </asp:Panel> </td> <td valign="top"> <div id="divHistory" runat="server" style="margin:36px 0px 0px 20px;padding:0px 0px 0px 20px;position:fixed;top:300px;border:solid 1px red;" > <asp:Literal ID="litHistoryTable" runat="server"></asp:Literal> </div> </td> </tr> </table> </td> </tr> </table> <telerik:RadScriptBlock ID="scriptBlock" runat="server"> <script type="text/javascript"> // Prevent MS Ajax from changing scroll position after ajax postback. function scrollTo(x,y) {} function EdfGrid_InitializeLayoutHandler(gridName) { //If the page is redirecting as a result of an ajax event, no need to set the UI. if(itemViewEx2Redirecting == true) return; } function EdfGrid_ColumnResizeHandler(oGrid, eventArgs) { Refresh('<%=pnlGrid.UniqueID%>', "ColumnResize$"+eventArgs.get_gridColumn().get_element().offsetWidth+"$"+eventArgs.get_gridColumn().get_uniqueName()); } function Refresh(target, arg) { var ajaxManager = $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>"); if (ajaxManager) { if (target == null) { ajaxManager.ajaxRequest(arg); } else { ajaxManager.ajaxRequestWithTarget(target, arg); } } } function GetItem(direction) { Refresh('<%=divPrevNext.UniqueID%>', direction); } </script> </telerik:RadScriptBlock>function GetItem(direction) { var divHistory = document.getElementById("<%= divHistory.ClientID %>"); if (divHistory) { divHistory.innerHtml = ""; divHistory.innerText = ""; divHistory.textContent = ""; } Refresh('<%=divPrevNext.UniqueID%>', direction); } Refresh('<%=divPrevNext.UniqueID%>', direction);
to:Refresh('<%=divHomeControls.UniqueID%>', direction); <div id="ctl00_ContentPlaceHolderMain_divHistory" style="margin:36px 0px 0px 20px;padding:0px 0px 0px 20px;position:fixed;top:300px;border:solid 1px red;left:584px;"> <table border="0" cellpadding="4" cellspacing="4"> <thead> <th align="center" colspan="3">UCC Change History</th></thead> <thead><th align="center" >Date of Change</th> <th align="center" >Active Value</th><th align="center" >Previous Value</th> </thead> <tbody> <tr> <td colspan="3" align="center" >There is no history for this field.</td> </tr> </tbody> </table> </div>