I have a editable list view with multiple records in a user defined sequence:
Order # Date Sequence
------------------------------------
order #10 03-10-2014 1
order #17 03-10-2014 2
order #13 03-10-2014 3
order #19 03-10-2014 4
If order #13 is changed to sequence 2, order #17 is automatically bumped to the next value (3 in this case), but it doesn't show up on screen.
In other words, I get this:
Order # Date Sequence
------------------------------------
order #10 03-10-2014 1
order #17 03-10-2014 2
order #13 03-10-2014 2
order #19 03-10-2014 4
But the data actually is this:
Order # Date Sequence
------------------------------------
order #10 03-10-2014 1
order #17 03-10-2014 3
order #13 03-10-2014 2
order #19 03-10-2014 4
How do I get the list view to update all changed records?