Hi All,
Iam dynamically binding the grid in the code behind. I have one Grid, inside that i have Tabcontorl with tabs and multipage view. I am adding a gridview to the pageview. I can not see the rendered gridview on the screen, however if I view the source from the browser I am able to see that the gridview was writted to the browser. How can I fix this so I will be able to view the gridView?
Iam dynamically binding the grid in the code behind. I have one Grid, inside that i have Tabcontorl with tabs and multipage view. I am adding a gridview to the pageview. I can not see the rendered gridview on the screen, however if I view the source from the browser I am able to see that the gridview was writted to the browser. How can I fix this so I will be able to view the gridView?
| <telerik:RadGrid ID="RadGrid1" runat="server" Width="95%" ShowStatusBar="true" |
| AutoGenerateColumns="true" PageSize="7" AllowSorting="True" AllowMultiRowSelection="False" |
| AllowPaging="True" OnItemCreated="RadGrid1_ItemCreated"> |
| <MasterTableView Width="100%" DataKeyNames="CustomerID" AllowMultiColumnSorting="True" AutoGenerateColumns="true" > |
| <NestedViewTemplate> |
| <asp:Panel runat="server" ID="InnerContainer" CssClass="" Visible="true"> |
| <telerik:RadTabStrip runat="server" ID="TabStip1" |
| SelectedIndex="0" OnLoad="TabStip_OnLoad" MultiPageID="Multipage1" > |
| <Tabs> |
| <telerik:RadTab runat="server" Text="Sales" PageViewID="PageView1"> |
| </telerik:RadTab> |
| <telerik:RadTab runat="server" Text="Contact Information" PageViewID="PageView2"> |
| </telerik:RadTab> |
| <telerik:RadTab runat="server" Text="Statistics Chart" PageViewID="PageView3"> |
| </telerik:RadTab> |
| </Tabs> |
| </telerik:RadTabStrip> |
| <telerik:RadMultiPage runat="server" ID="Multipage1" RenderSelectedPageOnly="false" SelectedIndex="0"> |
| <telerik:RadPageView runat="server" ID="PageView1"> |
| <telerik:RadGrid runat="server" ID="OrdersGrid" AutoGenerateColumns="false" |
| ShowFooter="true" AllowSorting="true" EnableLinqExpressions="false"> |
| <MasterTableView ShowHeader="true" AutoGenerateColumns="false" AllowPaging="true" |
| PageSize="7" DataKeyNames="EmployeeID"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="OrderId" UniqueName="OrderID" HeaderText="OrderID"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="EmployeeID" UniqueName="EmployeeID" HeaderText="EmployeeID"></telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
| </telerik:RadPageView> |
| </telerik:RadMultiPage> |
| </asp:Panel> |
| </NestedViewTemplate> |
| </MasterTableView> |
| </telerik:RadGrid> |