Skip to main content
olalekana0448
Inspiring
May 18, 2021
Question

Line Break after FormLayout contents

  • May 18, 2021
  • 4 replies
  • 0 views

How to add line break after formLayout contents , before buttonLayout. I have tried <br/>, and char(10), but none seemed to work.

Thanks in advance

    4 replies

    stefanhelzle0001
    Brainy
    May 18, 2021

    As this is not HTML, did you try to add an empty section layout? I assume that you want to add some space between your content and the buttons.

    olalekana0448
    Inspiring
    May 18, 2021

    Thanks, Stefan, I will try the empty section and see if it looks good aesthetically .

    davel001150
    Inspiring
    May 18, 2021

    The most typical spacer of all is a!textField with label set to "" (empty string), and readOnly set to true.

    Empty section is very good if you want a line.  The best way to make sure the line is displayed is to use an invisible character that won't display on any browser but will still cause the line to render as the section label.  So far, I've found the right-to-left mark [I think it was char(8207) ] has proven most successful to me.

    olalekana0448
    Inspiring
    May 18, 2021

    Thanks, David. That makes sense !