Skip to Main Content
HCL Domino Ideas Portal

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

Status Under Consideration
Workspace Domino Designer
Categories @Formulas
Created by Guest
Created on Dec 14, 2023

(partial) refresh options for Notes form fields

one of the great features of xpages is the partial refresh option. something similar should be wonderful for Notes forms (form for Notes client). The refresh options are out of date / too limited.

  • Attach files
      Drop here to upload
    • Guest
      Reply
      |
      Mar 3, 2025

      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:

      1. add a computed for display field "[Fieldname]Options"

      2. move the option formula from the field to this computed for display field and add one line at the start

        1. @if( !@Contains(refreshOptions; "#" + @thisName+ "#") & refreshOptions != "*"; @return(@thisValue); "");

      3. In the Option fields reference this computed for display field for valid options

      4. 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)