Tag handler generating a form (or not) depending on attributes values, useful when handling widgets that may need to be surrounded by a form (or not) depending on their configuration.
Available since 8.2
Example:<nxu:form id="#{widget.id}_form" useAjaxForm="#{useAjaxForm and supportAjax}" disableDoubleClickShield="#{disableDoubleClickShield}"> <nxl:widget widget="#{widget}" value="#{fieldOrValue}" /> </nxu:form>
Name | Required | Type | Description |
---|---|---|---|
id | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| Value binding resolving to the form id. |
skip | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean )
| Value binding resolving to a boolean value: if true, the form will not be generated, but the tag content will still be taken into account. Defaults to false. |
disableDoubleClickShield | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean )
| Value binding resolving to a boolean value: if true, the form will not prevent clicking twice on buttons in the form. Defaults to false. |
useAjaxForm | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean )
| Value binding resolving to a boolean value: if true, the form enctype attribute will not handle multipart. Defaults to false. |
disableMultipartForm | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean )
| Value binding resolving to a boolean value: if true, the form enctype attribute will not handle multipart. Defaults to false. |
onsubmit | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| Javascript method to be called when the form is submitted. |
styleClass | false | javax.el.ValueExpression
(must evaluate to java.lang.String )
| Style class to be set on the form. |
Output generated by Vdldoc View Declaration Language Documentation Generator.