I have field item called "orders", when the number in the field is updated, a fetch query executes telling the user how many orders have been placed for the client. The new number is not reflected in the fetch query. For instance, if there are 10 orders, and the user adds a new order, there should now be 11. What happens is that 10 orders are show.
The problem seems to be that the form saves the new order, and retrieve the order at the same time so it thinks there is 10. If you save the form twice the new value of 11 shows.
is there a trick to make this work?