I have a RadGrid like this:
<telerik:RadGrid ID="ProductGrid" runat="server"
OnItemDataBound="ProductGrid_ItemDataBound"
OnNeedDataSource="ProductGrid_NeedDataSource">
<MasterTableView AutoGenerateColumns="False" DataKeyNames="Change" TableLayout="Fixed">
<Columns>
<telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Price" HeaderText="Price" UniqueName="Price">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
I want to have tables for each category. And I want to display several categories at same time with ability to show/hide each of them (I can figure out show/hide part). How could I achieve it?
Thanks in advance!
<telerik:RadGrid ID="ProductGrid" runat="server"
OnItemDataBound="ProductGrid_ItemDataBound"
OnNeedDataSource="ProductGrid_NeedDataSource">
<MasterTableView AutoGenerateColumns="False" DataKeyNames="Change" TableLayout="Fixed">
<Columns>
<telerik:GridBoundColumn DataField="Name" HeaderText="Name" UniqueName="Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Price" HeaderText="Price" UniqueName="Price">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
I want to have tables for each category. And I want to display several categories at same time with ability to show/hide each of them (I can figure out show/hide part). How could I achieve it?
Thanks in advance!