Browse by Tags
All Tags » Master Detail » gridcontrol (RSS)
-
hi,
I am sorting the master/detail grid from the column header. I have a column which corresponds to the index of the row.
for (int i = 0; i < m_northWindDataSet.Tables[nIndex].Rows.Count; i++)
{
m_northWindDataSet.Tables[nIndex].Rows[ i ].SetField(0, (i + 1).ToString());
}
//then I bind this table to grid.
When I sort a ...
|
|
|
|