Skip to main content
July 15, 2024
Question

Display large text message in a separate popup or screen

  • July 15, 2024
  • 6 replies
  • 0 views

Hi team,

I have a gridfield where a gridcolumn has a value who's character count can go upto 2500. I want to implement a functionality where i display only 200 chars and show a link "more". When I click on the link, either a popup appears where the entire 2500 char text is displayed or another site appears to display the whole value. How can I achieve this? I tried to use safelink, but I am not sure how to configure the uri to display the text. Can anyone please help me out.

So far, i have achieved this,

a!gridColumn(
            label: "Enter 2500 char text",
            value: a!richTextDisplayField(
              value:{a!richTextItem(
                text: left(fv!row.textValue,255)
              ),
              a!richTextItem(
                text:"..more",
                link: a!safeLink(
                 
                )
              )
              }
            )
          )

    6 replies

    sriramk5349
    July 15, 2024

    Hi [mention:b47483402db54588aa09daccbe2c26a1:e9ed411860ed4f2ba0265705b8793d05] ,

    You can use related action and display text in the popup screen 

    July 15, 2024

    This is not a record.

    July 15, 2024

    Try More-Less pattern available in Patterns Palette.

    July 15, 2024

    This is helpful..thanks

    stefanhelzle0001
    Brainy
    July 15, 2024
    July 15, 2024

    This is a great work around. Thanks