Ok, so I understand.
Just let them create pages with html and just put them in ftl.
You can use the html in the ftl but the power is, if you need something
available in OFBiz in your html, you can call it from the ftl \o/
If you want to include javascript or jquery files just do it like that
in the screen :
<screen name="HIBOrderAlertInformation">
<section>
<actions>
<set field="tabButtonItem"
value="HIBOrderAlertInformation"/>
<set field="layoutSettings.javaScripts[]"
value="/myapp/images/js/myapp-uxscreens.js" global="true" />
<script
location="component://myapp/webapp/myapp/WEB-INF/actions/custRequest/CustRequestScreenUX.groovy"/>
</actions>
<widgets>
<decorator-screen name="MyDecorator">
<decorator-section name="body">
<section>
<widgets>
<platform-specific><html><html-template
location="component://myapp/templates/uxScreens/orderAlert.ftl"/></html></platform-specific>
</widgets>
</section>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
Le 29/01/2016 08:44, hoboy2 a écrit :
they are familiar with jquery, javaScript, html.