Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In a new installation, the presentation used for Interactive Forms in the Interactive Forms module is the XperienCentral default presentation. You can apply your own presentation to the Interactive Forms module in order to allow your designers to see how forms will be rendered on the front-end while creating them. This mirrors the way that the look and feel of content items are rendered in the Editor using your own presentation. You can override the default presentation for form steps as well as form elements themselves.

To apply your own presentation to the Interactive Forms module,

...

create a plugin that applies your own style. The following is a simple modification of the default XperienCentral JSPF (formstep.jspf) in order to change the styling:


Code Block
themeEclipse
<c:if test="${mode == 'preview'}">
<style>
.wm-field
{ height: 75px; }
.wm-field-input
{ float: right; }
</style>



Deploy the plugin in XperienCentral.


Back to top