This question is locked. New answers and comments are not allowed.
hi,
In my application I need to build and fill a gridview dynamically at runtime,
For columns I used the bellow code and it works. Is it possible to add rows using the same way?
Telerik.Windows.Controls.GridViewColumn[] columns;
columns = new Telerik.Windows.Controls.GridViewColumn[record.length];
for (int i =0; i < record.length; i++)
{
columns[i] = new Telerik.Windows.Controls.GridViewColumn();
columns[i].HeaderText = record[i].record;
grid.Columns.Add(columns[i]);
}
Thx in advance…
