By
Published: 13 Jan 2005
I have two fields on a form -- one is item type, the other is item options. They are both dialog lists with formula for choice. I am using @dblookup in item options with item type as the key to search for the value for its options.
Every time I change the item type based on the dialog list choice I want my item options to change to the list for the item type. I have tried call uidoc.refresh and uidoc.save in the exiting event of the item type field, but it doesn't work -- it didn't change the item options.
You have to enable the "Refresh fields on keyword change" option in the itemType field, and the "Refresh choices on document refresh" option in the itemOptions field.
Note: If the user has already selected a value in the itemOptions field, that value will remain selected after the refresh even if it is no longer a valid selection. To fix this you would need an input translation formula in itemOptions that checks whether the current field value is valid, and if not, sets the field to "". E.g.: valid_choices := @DbLookup(""; ...; itemType;...); @If(@IsError(valid_choices; ""; @Keywords(valid_choices; @ThisValue))
Do you have comments on this Ask the Expert question and response? Let us know.
Dig Deeper on Lotus Notes Domino Formula Language
Learn how you can use LotusScript and OLE to create and populate Microsoft Excel spreadsheets, as well as a little bit about Lotus Symphony.
Continue Reading
Discover options you can use if you'd like external users to be able to access a workflow-based Notes Domino application through different ...
Continue Reading
When Notes/Domino developers say they want to "update the fields" in tha Lotus Notes view, they usually mean that they want to cause computed fields ...
Continue Reading