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
Created by Guest
Created on Nov 19, 2020

Extend the capability of the @-formula - @DocFields and the class NotesDocument

Could you extend the capability of the @-formula - @DocFields and the class NotesDocument function .Items

so that we can pass a parameter to get the names of all fields in the document by template

An example implementation on @-formulas can be done like this:

pattern:="*_alt";

ListField:=@DocFields;

ListField:=@Transform(ListField;"fd";

@If(@Matches(fd;pattern); fd; @Nothing));

ListField

in the LotusScript, this can only be done by iterating over all the fields in the loop..

You can also make it possible to return not field names, but the fields themselves - items

  • Attach files
  • Guest
    Reply
    |
    Dec 24, 2020

    A property that returns an array of item names - it would be convenient!

  • Guest
    Reply
    |
    Nov 23, 2020

    This proposal comes as a preface to another proposal)
    https://domino-ideas.hcltechsw.com/ideas/DDXP-I-734

  • Guest
    Reply
    |
    Nov 22, 2020

    Not sure, if I got you 100% but it looks like a rather special need, and you could solve this with using @For or @Transform from where you are?