datagrid - non query sorting

  • Thread starter Thread starter Mortar
  • Start date Start date
M

Mortar

i am filling a datagrid with a query, then changing some of the values
in the grid. Is it possible to resort the data in the grid after I do
my manual changes? do i have to write the values into an array, sort
them, then re-write them back into the grid, or is there some better
way?
 
If you're using a DataView as the grid's datasource, the easiest way is to
resort the DataView using the .sort method.

Hope this helps.

Barry
in Oregon
 
not using the DataView but thanks.


If you're using a DataView as the grid's datasource, the easiest way is to
resort the DataView using the .sort method.

Hope this helps.

Barry
in Oregon
 
Back
Top