The problem is that RadPane--rpLeft which contain a usercontrol is all blank when I make a search.The
strange thing is that I click the RadSplitBar to collapse this pane and then click the RadSplitBar again to expand.
All content in this Pane is there.I don't know what cause this problem. I gusee it maybe the usercontrol in this pane.
Could someone give me some idea? I will appreciate it.
<telerik:RadSplitter ID="rspSplitter" runat="server" ResizeWithBrowserWindow="true" VisibleDuringInit="false" Width="100%" Height="100%"> <telerik:RadPane ID="rpLeft" runat="server" Width="20%" Scrolling="None" Collapsed="true"> <uc4:ajaxoperatorleftpart id="AjaxPart1" runat="server" /> <iframe id="frameMain" src="../../Default.aspx" scrolling="no" frameborder="0" width="100%" height="220"></iframe> </telerik:RadPane> <telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Forward" /> <telerik:RadPane ID="rpRight" runat="server" Scrolling="None" Width="80%"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td valign="top"> <div> <table class="table" border="0" cellpadding="0" cellspacing="0" width="100%" style="margin-top: 2px; margin-bottom: 2px;"> <tr> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td align="right"> KeyWords: </td> <td style="width: 220px;"> <telerik:RadTextBox ID="rtxtKeyStr" runat="server" EmptyMessage="" Width="220px"> </telerik:RadTextBox> </td> <td style="width: 110px;" align="right"> IsDirectSolution: </td> <td> <asp:RadioButtonList ID="rblDirectSolutionSimple" runat="server" CellPadding="0" CellSpacing="0" RepeatDirection="Horizontal" RepeatLayout="Table"> <asp:ListItem Selected="True" Value="">All</asp:ListItem> <asp:ListItem Value="1">Y</asp:ListItem> <asp:ListItem Value="0">N</asp:ListItem> </asp:RadioButtonList> </td> <td style="width: 80px;"> <asp:ImageButton ID="ibtnSimpleSearch" runat="server" ImageUrl="~/App_Themes/Default/images/search.gif" OnClick="ibtnSimpleSearch_Click" Style="height: 22px" /> </td> </tr> </table> </td> </tr> </table> <telerik:RadGrid ID="RadGrid1" runat="server"> <MasterTableView Name="requestList" Width="100%"> <Columns> <telerik:GridTemplateColumn HeaderText="request" UniqueName="column" SortExpression="ID"> <ItemTemplate> <a href="javascript:void(null);" onclick="openRequestInfo('<%#Eval("ID") %>')"> <%#Eval("ID") %></a> </ItemTemplate> <HeaderStyle Width="80" /> </telerik:GridTemplateColumn> <telerik:GridBoundColumn HeaderText="Name" UniqueName="column1" DataField="UserAccount"> <HeaderStyle Width="80px" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="Department" UniqueName="column2" DataField="Department"> <HeaderStyle Width="90px" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="Contract" UniqueName="column3" DataField="Telephone"> <HeaderStyle Width="80px" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn HeaderText="Content" UniqueName="column4"> <ItemTemplate> <asp:Label ID="lblContent" runat="server" Text='<%#Eval("Content") %>' ToolTip='<%#Eval("Content") %>'></asp:Label> </ItemTemplate> <HeaderStyle Wrap="false" /> <ItemStyle Wrap="false" /> </telerik:GridTemplateColumn> </Columns> <HeaderStyle Wrap="false" /> </MasterTableView> <ClientSettings> <Selecting AllowRowSelect="true" /> <Resizing AllowColumnResize="True" EnableRealTimeResize="true" ClipCellContentOnResize="true" /> </ClientSettings> </telerik:RadGrid> </div> </td> </tr> </table> </telerik:RadPane> </telerik:RadSplitter>