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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top