Colleagues, I use this code and can not bring the columns only when I leave the pre-defined, but if I wanted to use the same gridview, and searching of different tables with different number of columns, and dynamically populate, as the gridview does not natively integration with the jquery plugin datables.
How to do this with datables dynamically?
</head> <body> <form id="form1" runat="server"> <div class="Shadow"> <asp:GridView ID="GridView1" runat="server" OnPreRender="GridView1_PreRender" ShowFooter="true" AutoGenerateColumns="false"> <Columns> <asp:TemplateField HeaderText="S.No"> <ItemTemplate> <%# Eval("id") %> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Engine"> <ItemTemplate> <%# Eval("engine")%> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Browser"> <ItemTemplate> <%# Eval("browser")%> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Platform"> <ItemTemplate> <%# Eval("platform")%> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Version"> <ItemTemplate> <%# Eval("version")%> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Grade"> <ItemTemplate> <%# Eval("grade")%> </ItemTemplate> <%-- <FooterTemplate> </FooterTemplate>--%> </asp:TemplateField> <asp:TemplateField HeaderText="Market Share"> <ItemTemplate> <%# Eval("marketshare")%> </ItemTemplate> </asp:TemplateField> <asp:TemplateField HeaderText="Date"> <ItemTemplate> <%# Eval("RDate")%> </ItemTemplate> </asp:TemplateField> <%--<asp:TemplateField> <FooterTemplate> <tr> <th style="text-align: right" colspan="5"> Total: </th> <th colspan="2" align="left"> </th> <th colspan="1" align="right"> </th> </tr> <tr> <th> S.No </th> <th> Rendering Engine </th> <th> Browser </th> <th> PlotForm </th> <th> Engine Version </th> <th> CSS Grade </th> <th> Market Share </th> <th> Release Date </th> </tr> </FooterTemplate> </asp:TemplateField>--%> </Columns> </asp:GridView> </div> </form> </body> </html>========================
How to do this with datables dynamically?