I have a two dimensional array
for (int i = 0; i < rowList.GetLength(0); i++) { for (int j = 0; j < rowList.GetLength(1); ++j) { System.Diagnostics.Debug.WriteLine(rowList.GetValue(i,j)); } }
How can I show this information in ext.net gridPanel
I have the code on an aspx page as follows:
<ext:GridPanel ID="GridPanel1" runat="server" Title="SLA-Einhaltung gesamt in % (Basis) " Height="200" Width="800" Frame="true"> <Store> <ext:Store runat="server" ID="Store1"> <Model> <ext:Model runat="server" IDProperty="ModelID"> <Fields> <ext:ModelField Name="SLA_typ"></ext:ModelField> </Fields> </ext:Model> </Model> </ext:Store> </Store> <ColumnModel runat="server"> <Columns> <ext:Column runat="server" DataIndex="SLA_typ" Width="120" Text="Tittle"></ext:Column> </Columns> </ColumnModel> </ext:GridPanel>
source share