Package com.orchestranetworks.ui
Interface UIServiceComponentWriter
- All Superinterfaces:
UIBodyWriter,UIComponentWriter,UIDependencyRegisterer,UIJavaScriptWriter,UIResourceLocator,UISessionContext
This interface allows building standard EBX® components, from a
ServiceContext.
From release 5.8.0, it is strongly advised to use the new UserService API.
Please refer to the
current documentation on user services
for more information.
An instance of this interface can be obtained from ServiceContext.getUIComponentWriter()
or ServiceContext.getUIComponentWriterForJSP(JspWriter).
- Since:
- 5.2.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionaddButtonSubmit(UIButtonSpecSubmit aButtonSpec) Adds an HTML submit button.voidaddSubSubtitle(UserMessage aMessage) Adds a title undersubtitlelevel.voidaddSubtitle(UserMessage aMessage) Adds a subtitle in the page.voidendForm()End the form that was previously started.voidstartForm(UIFormSpec aFormSpec) Starts a new form.Methods inherited from interface com.orchestranetworks.ui.UIBodyWriter
add, add, add, add_cr, add_cr, addSafeAttribute, addSafeAttribute, addSafeInnerHTML, addSafeInnerHTMLMethods inherited from interface com.orchestranetworks.ui.UIComponentWriter
addButtonHelp, addButtonJavaScript, addButtonJavaScriptToggle, addUILabel, addUserAvatar, buildButtonPreview, buildButtonPreview, buildButtonPreview, endBorder, endExpandCollapseBlock, endFormGroup, endFormRow, endTableFormRow, newExpandCollapseBlock, newFormGroup, newFormRow, startBorder, startBorder, startBorder, startExpandCollapseBlock, startExpandCollapseBlock, startFormGroup, startFormGroup, startFormRow, startFormRow, startFormRow, startFormRow, startTableFormRowMethods inherited from interface com.orchestranetworks.ui.UIDependencyRegisterer
addJavaScriptDependencyMethods inherited from interface com.orchestranetworks.ui.UIJavaScriptWriter
addJS, addJS_addResizeWorkspaceListener, addJS_cr, addJS_cr, addJS_openPreviewImage, addJS_openPreviewImageFromVar, addJS_setButtonDisabled, addJS_setExpandCollapseBlockExpanded, addJS_setStateToToggleButton, addJS_switchToPerspective, addJS_switchToPerspectiveActionMethods inherited from interface com.orchestranetworks.ui.UIResourceLocator
createWebComponentForRootSession, createWebComponentForSubSession, getURLForAjaxComponent, getURLForAjaxComponent, getURLForPerspectiveSelection, getURLForPerspectiveSelection, getURLForResource, getURLForResource, getURLForResource, getURLForResource, getURLForResource, getURLForRest, getURLForSelection, getURLForSelection, getURLForSelection, getURLForSelection, getURLForSelection, getURLForSelection, getURLForViewSelectionMethods inherited from interface com.orchestranetworks.ui.UISessionContext
getLocale, getSession
-
Method Details
-
startForm
Starts a new form.Caution:
- Set all the properties you want in the
UIFormSpecbefore callingstartForm(UIFormSpec). - Ensure that the form is ended.
- If the form contains a bottom bar, no content (HTML code) is allowed before or after the form.
- Parameters:
aFormSpec- the specification for the form.- Throws:
IllegalStateException- if the form was already started.
- Set all the properties you want in the
-
endForm
void endForm()End the form that was previously started.- Throws:
IllegalStateException- if the form was not started
-
addButtonSubmit
Adds an HTML submit button.- Parameters:
aButtonSpec- a button specification- Since:
- 5.3.0
- See Also:
-
addSubtitle
Adds a subtitle in the page. This is equivalent to HTML<h3>.The label of the user service is in the header of the workspace. All titles added in the page are considered as subtitles.
The label of the user service in the header of the workspace can be changed with
ServiceContext.setTitle(UserMessage).- Parameters:
aMessage- the text of the subtitle.
-
addSubSubtitle
Adds a title undersubtitlelevel. This is equivalent to HTML<h4>.- Parameters:
aMessage- the text of the sub-subtitle.
-