Hi,
Is it possible to place a RadGrid inside a RadPanelItem? I tried to insert a RadGrid into the ItemTemplate but that will always bring a compiling error claiming that the RadGrid is not defined.
The xml I used is as follows:
Is it possible to place a RadGrid inside a RadPanelItem? I tried to insert a RadGrid into the ItemTemplate but that will always bring a compiling error claiming that the RadGrid is not defined.
The xml I used is as follows:
<telerik:RadPanelBar ID="RadPanelBar1" runat="server" Skin="Outlook">
<Items>
<telerik:RadPanelItem Text="Browser">
<ItemTemplate>
<
telerik:RadGrid ID="RadGrid1" runat="server" ... >
</telerik:RadGrid>
</
ItemTemplate>
</
Items>
</
telerik:RadPanelItem>
Thanks.