I have a table box that display service order rows from a table called "Service line".
I have added 4 rows of data and now I want to move the first one (ID:10000) down in the list.
Well, what causes the rows to be displayed in the original order? It's the data in the row combined with the current sort order. So, to get a different order in display you need to manipulate the relevant data or the sort order.
But mind:
if you have the AutoSplitKey property active, you should not allow adding rows as long as you don't use the primary key.
take care of any external references if you rename the record.
Comments
But mind:
You may also let the user cut'n'paste the rows.