I have to identical RadGrid's. I created the Radgrid and then placed it in a nested view. The image show up in the first table but not the nested. What am I missing?
FIrst Table:
<telerik:RadGrid ID="RadGrid6" runat="server" DataSourceID="PictureDB" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True" PageSize="5" GridLines="None" ShowGroupPanel="True" CellSpacing="0" AllowFilteringByColumn="True"> <ClientSettings> <Selecting CellSelectionMode="None"></Selecting> </ClientSettings> <MasterTableView DataKeyNames="PictureID" DataSourceID="PictureDB" AllowFilteringByColumn="False"> <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings> <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="PictureID" DataType="System.Int32" FilterControlAltText="Filter PictureID column" HeaderText="PictureID" SortExpression="PictureID" UniqueName="PictureID" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Extension" FilterControlAltText="Filter Extension column" HeaderText="Extension" SortExpression="Extension" UniqueName="Extension"> </telerik:GridBoundColumn> <telerik:GridCheckBoxColumn DataField="IsNew" DataType="System.Boolean" FilterControlAltText="Filter IsNew column" HeaderText="IsNew" SortExpression="IsNew" UniqueName="IsNew"> </telerik:GridCheckBoxColumn> <telerik:GridBoundColumn DataField="SKU" FilterControlAltText="Filter SKU column" HeaderText="SKU" SortExpression="SKU" UniqueName="SKU"> </telerik:GridBoundColumn> </Columns> <Columns> <telerik:GridBinaryImageColumn DataField="PictureBinary"></telerik:GridBinaryImageColumn> </Columns> <EditFormSettings> <EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn> </EditFormSettings> </MasterTableView> <FilterMenu EnableImageSprites="False"></FilterMenu></telerik:RadGrid>Here is the table with nested view:
<telerik:RadGrid ID="RadGrid1" DataSourceID="DataSourceMP" runat="server" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True" PageSize="5" GridLines="None" ShowGroupPanel="True" CellSpacing="0" AllowFilteringByColumn="True"> <PagerStyle Mode="NumericPages"></PagerStyle> <MasterTableView DataSourceID="DataSourceMP" AllowMultiColumnSorting="True" GroupLoadMode="Server"> <NestedViewTemplate> <telerik:RadTabStrip runat="server" ID="TabStip1" MultiPageID="Multipage1" SelectedIndex="0"> <Tabs> <telerik:RadTab runat="server" Text="Pricing" PageViewID="PageView1"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Online Detail" PageViewID="PageView2"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Images" PageViewID="PageView3"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage runat="server" ID="Multipage1" SelectedIndex="0" RenderSelectedPageOnly="false"> <telerik:RadPageView runat="server" ID="PageView1"> <%--this an a master table--%> <%--this an a master table End--%> </telerik:RadPageView> <telerik:RadPageView runat="server" ID="PageView2" Width="460px"> <%--this an a master table--%> <%--this an a master table End--%> </telerik:RadPageView> <telerik:RadPageView runat="server" ID="PageView3"> <%--this an a master table--%> <asp:Label ID="Label3" Font-Bold="true" Font-Italic="true" Text='<%# Eval("Item_Number") %>' Visible="false" runat="server"></asp:Label> <telerik:RadGrid ID="RadGrid5" runat="server" DataSourceID="PictureDB" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True" PageSize="5" GridLines="None" ShowGroupPanel="True" CellSpacing="0" AllowFilteringByColumn="True"> <ClientSettings> <Selecting CellSelectionMode="None"></Selecting> </ClientSettings> <MasterTableView DataKeyNames="PictureID" DataSourceID="PictureDB" AllowFilteringByColumn="False"> <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings> <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="PictureID" DataType="System.Int32" FilterControlAltText="Filter PictureID column" HeaderText="PictureID" SortExpression="PictureID" UniqueName="PictureID" ReadOnly="True"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Extension" FilterControlAltText="Filter Extension column" HeaderText="Extension" SortExpression="Extension" UniqueName="Extension"> </telerik:GridBoundColumn> <telerik:GridCheckBoxColumn DataField="IsNew" DataType="System.Boolean" FilterControlAltText="Filter IsNew column" HeaderText="IsNew" SortExpression="IsNew" UniqueName="IsNew"> </telerik:GridCheckBoxColumn> <telerik:GridBoundColumn DataField="SKU" FilterControlAltText="Filter SKU column" HeaderText="SKU" SortExpression="SKU" UniqueName="SKU"> </telerik:GridBoundColumn> </Columns> <Columns> <telerik:GridBinaryImageColumn DataField="PictureBinary"></telerik:GridBinaryImageColumn> </Columns> <EditFormSettings> <EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn> </EditFormSettings> </MasterTableView> <FilterMenu EnableImageSprites="False"></FilterMenu> </telerik:RadGrid> <%--this an a master table End--%> </telerik:RadPageView> </telerik:RadMultiPage> </NestedViewTemplate> <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings> <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn> <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn> </MasterTableView> <ClientSettings AllowDragToGroup="false"> <Selecting CellSelectionMode="None"></Selecting> </ClientSettings> <FilterMenu EnableImageSprites="False"></FilterMenu></telerik:RadGrid>