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 Needs Review
Workspace Notes
Created by Guest
Created on Jun 1, 2021

Programmaticaly switch displayed table row in Read Mode

Update: Sorry as commented bellow, It is possible to do it in Read Mode using notes.ini. Thanks for the comment.

FIELD $TabTable := "TabName";

@Environment("notes.ini.var"; "TabName");

@If(

@IsDocBeingEdited; @Command([RefreshHideFormulas]);

@Command([SwitchForm]; "FormName")

)

Orig:
You can switch tab of tabbed table in Edit mode. You need to name the table and put in special Field the tab name. FIELD $TabTable := "Tab01". So U can create your own navigation in on the Form very easily.
In case you want to hide the tab cations and make your own navigation you are not able to do it in read mode.
You need to enter the edit mode or to close and reopen the document.

Similar: To expand or collapse sections in read mode.

  • Attach files
  • Guest
    Reply
    |
    Jun 2, 2021

    It’s possible. Have a look at the Winetasting app. Available on OpenNTF.

  • Guest
    Reply
    |
    Jun 1, 2021

    It is possible in read mode, you shouldn‘t have a field with that name on your form …