Hi,
I'm not sure if what I'm doing is possible with the Splitter control, but it'd great if I could get some advice.
Basically, I'd like to be able include RadPane's inside a repeater item - so that each item would be 'resizable' in relation to the other items.
Here's my markup currently:
But this code does not work - the page simply doesn't render anything. If I remove the RadSplitter, RadPane etc elements then the Repeater displays the items correctly. Any ideas?
I'm not sure if what I'm doing is possible with the Splitter control, but it'd great if I could get some advice.
Basically, I'd like to be able include RadPane's inside a repeater item - so that each item would be 'resizable' in relation to the other items.
Here's my markup currently:
<telerik:RadSplitter ID="splt" runat="server" Width="100%"> <asp:Repeater ID="rptSplitter" runat="server" OnItemDataBound="rptSplitter_ItemDataBound"><ItemTemplate><telerik:RadPane ID="pane" runat="server"><asp:Label ID="lblText" runat="server" Text='<%# DataBinder.Eval(Container.DataItem,"From") %>'></asp:Label><telerik:RadGrid ID="gv" runat="server" AutoGenerateColumns="false"><MasterTableView runat="server" DataKeyNames="ID"><Columns><telerik:GridBoundColumn DataField="ConsignmentNo" HeaderText="Consignment" SortExpression="ConsignmentNo"></telerik:GridBoundColumn><telerik:GridBoundColumn DataField="Customer" HeaderText="Customer" SortExpression="Customer"></telerik:GridBoundColumn></Columns></MasterTableView></telerik:RadGrid></telerik:RadPane></ItemTemplate><SeparatorTemplate><telerik:RadSplitBar runat="server"></telerik:RadSplitBar></SeparatorTemplate></asp:Repeater> </telerik:RadSplitter>But this code does not work - the page simply doesn't render anything. If I remove the RadSplitter, RadPane etc elements then the Repeater displays the items correctly. Any ideas?