Tag rendering a HTML editor relying on TinyMCE library.
Example:
        <nxu:editor
          value="#{document.dublincore.description}"
          required="false" />
      
      
    | Info | Value | 
|---|---|
| Component Type | 
        org.nuxeo.ecm.platform.ui.web.component.editor.UIHtmlEditor
       | 
| Handler Class | 
        org.nuxeo.ecm.platform.ui.web.tag.handler.GenericHtmlComponentHandler
       | 
| Renderer Type | None | 
| Description | None | 
| Name | Required | Type | Description | 
|---|---|---|---|
value | true | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | Value binding representing the HTML text. | 
id | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | The component identifier for this component. This value must be unique within the closest parent component that is a naming container. | 
rendered | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean)
					 | Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. | 
required | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean)
					 | Flag indicating that the user is required to provide a submitted value for the blob. | 
width | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | The textarea width. Defaults to "640". | 
height | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | The textarea height. Defaults to "400". | 
editorSelector | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | The class to use to identify text areas to turn into html editors. Defaults to "mceEditor". See the editor_selector option in TinyMCE (http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/editor_selector). | 
cols | false | javax.el.ValueExpression
(must evaluate to java.lang.Integer)
					 | The cols attribute sets the number of columns to display. Available since 5.3.1. | 
rows | false | javax.el.ValueExpression
(must evaluate to java.lang.Integer)
					 | The rows attribute sets the number of rows to display. Available since 5.3.1. | 
disableHtmlInit | false | javax.el.ValueExpression
(must evaluate to java.lang.Boolean)
					 | If set to true, the default display will be the text display (not html editor). Available since 5.3.1. | 
configuration | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | JSON configuration for TinyMCE initialization, merged with default configuration. Available since 8.1. Example: {"toolbar4": "paste"} | 
Output generated by Vdldoc View Declaration Language Documentation Generator.