hi,
i am test-migrating our application to your controls when i noticed that all objects's value in the splitter-radpane are not passed on update command inside a formview. when i place all of those objects outside the splitter, everything works ok. please help.
i am test-migrating our application to your controls when i noticed that all objects's value in the splitter-radpane are not passed on update command inside a formview. when i place all of those objects outside the splitter, everything works ok. please help.
| <EditItemTemplate> |
| <div class="css_pager"> |
| <div style="float: left; margin-left: 5px"> |
| <asp:DropDownList ID="NOTEMODE_dd" runat="server" AutoPostBack="true" Font-Size="x-Small" |
| OnSelectedIndexChanged="EDITVIEW_OnChanged" SelectedValue='<%# Bind("SRESPFLG")%>'> |
| <asp:ListItem Value="" Text="View as HTML" /> |
| <asp:ListItem Value="E" Text="Edit as HTML" /> |
| <asp:ListItem Value="V" Text="View as Text" /> |
| <asp:ListItem Value="T" Text="Edit as Text" /> |
| <asp:ListItem Value="H" Text="Hide" /> |
| </asp:DropDownList> |
| </div> |
| <div style="float: right; margin-right: 10px"> |
| <asp:Label ID="TOPMSG_lbl" runat="server" Font-Size="x-Small" Text="<%# GetDateInfo() %>"></asp:Label> |
| </div> |
| </div> |
| <telerik:RadComboBox ID="COMPANY_cmb" runat="server" SelectedValue='<%# Bind("CO_ID") >' Height="180px" |
| ShowDropDownOnTextboxClick="false" DataTextField="NAME" DataValueField="ID" AllowCustomText="True" |
| HighlightTemplatedItems="true" MarkFirstMatch="true" EnableLoadOnDemand="True" |
| EnableVirtualScrolling="true" OnSelectedIndexChanged="COMPANY_IndexChanged" OnItemsRequested="COMPANY_ItemsRequested" |
| AutoPostBack="true"> |
| </telerik:RadComboBox> |
| <telerik:RadSplitter ID="RadSplitter1" runat="server" Height="330" Width="100%"> |
| <telerik:RadPane ID="MiddlePane" runat="server"> |
| middle pane |
| </telerik:RadPane> |
| <telerik:RadSplitBar ID="RadSplitBar2" runat="server"></telerik:RadSplitBar> |
| <telerik:RadPane ID="EndPane" runat="server" Width="22" Scrolling="None"> |
| <!-- selection will fetch the right values of binded objects --> |
| <!-- updates fail when combobox COMPANY_cmb is here or any binded objects --> |
| <!-- will return null as the value of the binded fields --> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
| </EditItemTemplate> |