How do i make the asp:DataGrid look like the DNNGrid without using the DNNGrid and Telerik controls. Especially the footer and pager. I use the following grid but the pager and footer are not the same as DNNGrid has. The pager is just numbers as a default link and not styled liked the pager off DNNGrid.
<asp:datagrid id="grdItems" AllowPaging="true" PageSize="10" AutoGenerateColumns="false" EnableViewState="false" runat="server" GridLines="None" CssClass="dnnGrid">
<HeaderStyle CssClass="dnnGridHeader" verticalalign="Top"/>
<ItemStyle CssClass="dnnGridItem" horizontalalign="Left" />
<AlternatingItemStyle CssClass="dnnGridAltItem" HorizontalAlign="Left" />
<EditItemStyle CssClass="dnnFormInput" />
<SelectedItemStyle CssClass="dnnFormError" />
<FooterStyle CssClass="dnnGridFooter" />
<PagerStyle CssClass="dnnGridPager" Mode="NumericPages" PageButtonCount="5" />
<Columns>
<asp:TemplateColumn>
<HeaderTemplate>#</HeaderTemplate>
<ItemTemplate><%# DataBinder.Eval(Container.DataItem, "ElementID") %></ItemTemplate>
</asp:TemplateColumn></Columns>
</asp:datagrid>
Because the Telerik controls are moved to a seperate DLL and removed entirely in the future i would like my old and new modules to use the asp:DataGrid as an alternative. But how do i make use of the DNN styles for the Grid.
Or will there be a replacement DNNGrid without Telerik controls.