Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.
For more information and upcoming events around #dominoforever, please visit our Destination Domino Page
It´s a bit complicated and takes some discipline:
Workaround is adding a field refreshOptions and write every field which options should refresh into it with leading and trailing separator (i.e. ";" or "#")
Then for every options field:
add a computed for display field "[Fieldname]Options"
move the option formula from the field to this computed for display field and add one line at the start
@if( !@Contains(refreshOptions; "#" + @thisName+ "#") & refreshOptions != "*"; @return(@thisValue); "");
In the Option fields reference this computed for display field for valid options
You can do this to for computed fields only too
If you want to make a partial refresh just use this in on change or in a formula:
Call uiDoc.doc.replaceItemValue("refreshOptions", "#FirstField#SecondField#")
Call uidoc.Refresh(false, false)