A
andy
I have several forms with formviewa on them.
When a new record is inserted the users want to see the readonly
version of that record.
Default behaviour is to show the first record in the collection.
So if there are 5 entries and the user adds a 6th they want to see the
6th rather than the 1st after it's added.
Changing the criteria for the collection they see is not an option.
My quick and dirty solution is to sort on descending id so the most
recent record is first.
Which is fine until 2 people insert records and one gets to see the
"wrong" one.
A better method looks to be
I can get the record id back out of the stored procedure.
I can see you can navigate to a given formview page.
My problem is working out which page corresponds to the id I get back
out the insert.
Any ideas?
When a new record is inserted the users want to see the readonly
version of that record.
Default behaviour is to show the first record in the collection.
So if there are 5 entries and the user adds a 6th they want to see the
6th rather than the 1st after it's added.
Changing the criteria for the collection they see is not an option.
My quick and dirty solution is to sort on descending id so the most
recent record is first.
Which is fine until 2 people insert records and one gets to see the
"wrong" one.
A better method looks to be
I can get the record id back out of the stored procedure.
I can see you can navigate to a given formview page.
My problem is working out which page corresponds to the id I get back
out the insert.
Any ideas?