Description
Would be great if you can add a DataGrid support as we were using it heavily in our system or if there is an easy swappable already implemented component.
Sample ASPX code:
<asp:DataGrid ID="dgCountries" CellSpacing="2" CellPadding="1" runat="server" EnableViewState="true" CssClass="table"
BorderWidth="0px" BorderStyle="None" DataKeyField="COUNTRY_ID" OnDeleteCommand="deleteCountry"
AllowSorting="false" AutoGenerateColumns="false">
<asp:TemplateColumn HeaderText="Country">
<asp:Label runat="server" Text='<%# htmlEncode(Container.DataItem, "COUNTRY_NAME")%>' ID="lblCountry">
</asp:Label>
</asp:TemplateColumn>
<asp:ButtonColumn HeaderStyle-Width="30" ItemStyle-CssClass="iconCell" Text="<i class='deleteIcon' alt='Delete' title='Delete'> </i>"
CommandName="Delete"></asp:ButtonColumn>
</asp:DataGrid>