Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a DataTable which is bound to datagridview (Winforms)... I use the following two lines to get the DataRow that is selected in the datagridview...

        int l_intSelectedRow = DataGridView1.SelectedRows[0].Index;

        DataRow l_drwSelectedRow = ControlGroupPostedItems.Tables["PostedItems"].Rows[l_intSelectedRow];

This works fine until the DataGridView is Sorted... When the gridview is sorted by the, I get the incorrect values (1st selection of the sorted view return 1st row of unsorted Table).

How could I solve this... Is looping through the datatable the only way...

Thank you.

share|improve this question

2 Answers

up vote 0 down vote accepted

You'll need to use a unique ID on your data objects instead of their dataset index, and look things up using that.

share|improve this answer

Try directly sorting the DataTable, by using the Select method.

http://msdn.microsoft.com/en-us/library/way3dy9w.aspx

share|improve this answer
How will I know, Which Column the user has sorted and in which order? – The King Apr 2 '10 at 8:17
In order to detect the column, you could check out where the user clicked: on which column header. For the ordering, you can keep track for each column by switching ASC/DESC on each click. – thelost Apr 2 '10 at 8:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.