I have. My problem exists when I sort a dataview (which is the source of
my datagrid) and then click on 'edit'. The record that is returned is
always the record that was currently in that position within the datagrid
before the sort. Never the record that is there after the sort.
eg.
If I have a datagrid sorted by ID like:
ID Name
1 George
2 Harry
3 Dianne
4 Alfonso
and sort it by Name so it becomes:
ID Name
4 Alfonso
3 Dianne
1 George
2 Harry
If I click on '4' in the sorted grid it always returns the record associated
with '1' (ie. George).
With a CurrencyManager in a windows form I believe I can work around this,
but there is no such thing as a CurrencyManager for web forms (That I'm
aware of).
Any thoughts? I am absolutely desparate and frustrated with this and am
grasping at any straw poked my way
Thanks,
Jason