Section | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
If you are using in-house, Cascading Style Sheet code that was used in themes applied to forms/flows in previous releases, it can be added to a newly created style.css file in the frevvo.war file . The context parameter, frevvo.css.url, in the web.xml file must be changed to point to it. The web.xml file is included in the <frevvo-home>\tomcat\webapps\frevvo.war. The frevvo.war must be unzipped/rezipped after modifications have been made as outlined in the steps below: Let's use the following css code which hides the submit and cancel buttons on all forms/flows as an example:
...
7. Search for the frevvo.css.url context parameter. set the value of frevvo.css.url context parameter in the web.xml file to point to the newly created style.css file. The frevvo.css.url context parameter should look like this: Remember to save your changes.
Code Block |
---|
<context-param> <param-name>frevvo.css.url</param-name> <param-value>${context.path}/style.css</param-value> <description>Custom Stylesheet URL</description> </context-param> |
8. Rezip all the files in the c:\tmp\frevvo-war directory, even the ones you did not edit — if you change directories or zip them differently, Live Forms may not load correctly. Rename the modified file frevvo.war.
...
7. Add this parameter to the frevvo.xml file. Remember to save your changes.
Code Block |
---|
<Parameter name="frevvo.css.url" value="${context.path}/style.css" override="false"/> |
If you make these changes, the Login and Forget Password buttons on the login screen will also be hidden. This is useful for OEMS that embed in their own application.
API
The Data API enables programmatic access to the all resources and data stored in the server. The API provides a simple protocol for viewing and managing resources such as forms, applications, schemas, etc. OEM partners as well as end user customers can use the API to extend the features and provide tighter integration with other applications.
...