Home > Services
UI Components
A UI Component (User Interface Component) is a Java class implementing extended user interface features into EBX.Manager.
Steps to develop a UI Component are:
-
Develop a Java class that uses the EBX.Platform API
Your Java class has to extend the
UIBeanEditorsuper class. -
Declare your Java class in the adaptation model.
This element is defined under the element
xs:annotation/xs:appinfo/osd:uiBeanExample:
<osd:uiBean class="com.orchestranetworks.maclasse"/>
Once you have developed, deployed and declared a UI Service, users will use it in EBX.Manager as any other component.
Examples of UI Components:
-
Hidden characters for password information type
-
Specific Javascript UI components
-
...
Develop a UI Component:
Check out UI Component in the Javadoc .
Check out an implementation example in Tutorial .
Home > Services