Hell all,
I apologise if this is a really silly post but im struggling to save any changes made on a form.
This is notes client based!
Basically on one of my forms i have an embedded view. When i open an entry on the view, if i make any changes like e.g.
If i need to add additional comments in the ‘Comments’ field which is a text and editable field…
then to do this i select the edit button, enter the changes in the field and then select the save and close button which has this formula: -
@Command([FileSave]);
@Command([FileCloseWindow]).
When i re-open the same entry (that i made the changes too) from the embedded view, the changes dont appear to have saved?!
Also, if i open an entry from the embedded view, and want to change the status of the entry to ‘Completed’ or ‘Not Completed’, these changes do not appear to save either. The formulas i have used for the action button to change the status is: -
Mark as complete = @Command([EditDocument]);@Command([FileSave]);@SetField(“Status”;“Complete”);
@SetField(“CompletedDate”;@Now);
@Command([ViewRefreshFields])
Mark as Incomplete = @Command([EditDocument]);@SetField(“Status”;“Not Complete”);
@SetField(“CompletedDate”;“”);
@Command([ViewRefreshFields]).
Can anyone help me and explain why the changes i try to make do not appear to change when i re-open the entry that i made the changes too?
Thanking you in advance
Holly