Reputation: 15
After saving a specific field in a form, it will store on a view. This view is used by a combo box with a @DBColumn for the choices on another form. This combo box fails to show the recently made field as an option for choices. Even refreshing doesn't do the trick.
The combo box is editable and has "Refresh fields on keyword change" and "Refresh choices on document refresh" checked.
Thank you in advance for your help.
Upvotes: 1
Views: 193
Reputation: 30970
Use the "NoCache"
parameter in @DbColumn.
"NoCache" gets the results of the lookup from the database; no cache is used. If you want to ensure that Domino retrieves the latest information for every lookup, specify this option.
Upvotes: 1