Request: Simple tooltip formatting bold

Would be nice if tooltips could have bold text! Pretty basic but useful feature. Makes it easier to scan and read important stuff in the tooltips.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi  

    Can you try this logic may be it help.

    a!localVariables(
        local!lRange: 120302 - 97,
        local!uRange: 120276 - 65,
        a!textField(
          label: "Phone Number",
          helpTooltip: joinarray(
            char(
              a!forEach(
                items: code("Bold Text for ToolTips"),
                expression: a!match(
                  value: fv!item,
                  whenTrue: and(fv!value > 96, fv!value < 123, ),
                  then: fv!value + local!lRange,
                  whenTrue: and(fv!value > 64, fv!value < 91, ),
                  then: fv!value + local!uRange,
                  default: fv!value
                )
              )
            ),
            ""
          )
        )
      )
      
    

Reply
  • 0
    Certified Senior Developer

    Hi  

    Can you try this logic may be it help.

    a!localVariables(
        local!lRange: 120302 - 97,
        local!uRange: 120276 - 65,
        a!textField(
          label: "Phone Number",
          helpTooltip: joinarray(
            char(
              a!forEach(
                items: code("Bold Text for ToolTips"),
                expression: a!match(
                  value: fv!item,
                  whenTrue: and(fv!value > 96, fv!value < 123, ),
                  then: fv!value + local!lRange,
                  whenTrue: and(fv!value > 64, fv!value < 91, ),
                  then: fv!value + local!uRange,
                  default: fv!value
                )
              )
            ),
            ""
          )
        )
      )
      
    

Children
No Data