This documentation is for frevvo v10.0. Not for you? Earlier documentation is available too.
Document Services
Document Service
The document service is accessed via the URL/service. It supports the following parameters:
method=POST -- required and should be left POST
target=[url] -- [url] is the path to your servlet
The target will be passed as name/value pairs of all of the controls in your form with their current values. The target will also pass the collection of xml documents comprising the form's current data. The collection will include at least one document in the namespace 'form' which contains all the data in controls added to the form from palette. The collection will also include one xml document for each data source added to the form.
Custom Print View
One example use of
All forms by default are printable. To make a form printable edit the form and check the printable property. Sometimes form designers required a highly customized print view. By calling
To do this:
Add a message control to your form
Add the following html to your message control
<center>
<a href="javascript:void(0);" onClick="window.open(document.location.toString().split('?')[0] +
'/service?_method=POST&target=http://[myhost]:[myport]/Myservices/service/print/myForm')">Print</a>
</center>Your transformation service should return html to the browser window. You can style the message control as a button by adding a background color, a message type and even dragging it into a panel to size the "button".