Login  Register

Re: Applets in OFBiz

Posted by Oleg Kozyrev Jr. on Jun 26, 2006; 1:05pm
URL: http://ofbiz.116.s1.nabble.com/Applets-in-OFBiz-tp168677p168679.html


BJ,

If you mean controller.xml, then this is just a simple request:
    <request-map uri="AppletTest">
        <security https="false" auth="true"/>
        <response name="success" type="view" value="AppletTest"/>
        <response name="error" type="view" value="AppletTest"/>
    </request-map>

and in AppletTest screen I have simple ftl file include:

<widgets>
  <container style="screenlet">
    <container style="screenlet-header">
      <label style="boxhead" text="${uiLabelMap.DatawarehousePictureTitle}"/>
    </container>
    <container style="screenlet-body">
      <!-- pictureButton is visible -->
      <platform-specific>
        <html>
          <html-template location="component://datawarehouse/webapp/datawarehouse/includes/applet.ftl"/>
        </html>
      </platform-specific>
    </container>
  </container>
</widgets>

David, is where a way to subscribe to new mailing list to get messages directly into mailbox as it was earlier?

Thanks,

Oleg.