Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!

Editing Forms: Is there a type for insert a line break?

Avatar

Level 2

Hi all,

I would like to insert a line break (return) into a form. Is there any documantion about all types of the <static> element? I just know type="separator".

Many thanks, Robert

2 Replies

Avatar

Level 10

Hello Robert,

You should ask to the Adobe Campaign support team to give you the JSAPI.chm documentation file (windows help file). It is however subject to license so it depends on contract with Adobe, see your Adobe contact/support team.

In the meanwhile, use this:

<static type="separator" label="Please enter your name here."/>

or

<static type="separator">Please enter your name here.</static>

Regards
J-Serge

Avatar

Level 10

Hi Robert,

If you need real blank line, no choice, you need to use containers to manage the disposition.
For instance:

<container type="hpaned">

Use padding-top  attribute (or padding-bottom) to add pixels above (below) the container.


Other attributes are described in the JSAPI documentation.


Some other attributes are not described in the documentation and you can find out in the forms code...

Regards.

J-Serge