Documentation
Tomahawk Tools

Search 

Contents

  1. Introduction
  2. Getting Started
  3. Tomahawk Concepts
  4. Code View Support
  5. Design View Support
  6. Tag Object Toolbars
  7. Server Behaviors
  8. Property Inspectors
Selected 9. Tomahawk Tag Reference

10. Tomahawk Tag Reference

Contents > Tomahawk Tag Reference > t:inputHtml

t:inputHtml

The t:inputHtml tag displays the Kupu WYSIWYG XHTML text editor (see http://kupu.oscom.org). Only one inputHtml tag can be used per page, but multiple editors can be used if they are placed in different tags (such as t:panelTabbedPane ) so that only one renders at a time.

Example

<t:inputHtml></t:inputHtml>

Tag Attributes

allowEditSource Boolean
 
The allowEditSource attribute expects a boolean value that, when true, enables the user to edit the source code of the HTML being edited. The default value is true.
binding Expression
 
The value-binding expression linking this component tag to a backing bean property.
converter Text
 
The converter attribute sets the converter instance to be registered for this component. It must match the converter-id value of a converter element defined in your Faces configuration file.
displayValueOnly Boolean
 
The displayValueOnly attribute expects a boolean value that, when set to true, causes a tag to render its value only, and not the associated UI component.
displayValueOnlyStyle CSS Style
 
The displayValueOnlyStyle attribute defines the CSS style applied to the display value of this tag when the displayValueOnly attribute is set to true.
displayValueOnlyStyleClass CSS Class
 
The displayValueOnlyStyleClass attribute defines the CSS class applied to the display value of this tag when the displayValueOnly attribute is set to true.
enabledOnUserRole Text
 
The enabledOnUserRole attribute determines if this component will be rendered normally or not depending on the user's roles.
fallback Text
 
The fallback attribute expects a boolean value that, when true, displays a plain HTML text area field instead of the HTML input component. Some features may not be enabled when this value is true. The default value is false.
id Text
 
The unique identifier value for this component. The value must be unique within the closest naming container.
immediate Boolean
 
The immediate attribute is a boolean flag indicating that component events should be sent to registered event listeners immediately rather than after the validation phase of the JSF request processing lifecycle. The immediate flag allows you bypass JSF validation for a particular component.
rendered Boolean
 
A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered.
required Boolean
 
The required attribute is a boolean flag that indicates whether or not the user is required to provide a value for this field before the form can be submitted to the server.
showAllToolBoxes Boolean
 
The showAllToolBoxes attribute expects a boolean value that, when true, displays all available toolboxes in the toolbar of this input component. The default value is false.
showCleanupExpressionsToolBox Boolean
 
The showCleanupExpressionsToolBox attribute expects a boolean value that, when true, displays a toolbox icon for cleaning up expressions in the HTML entered by the user. The default value is false.
showDebugToolBox Boolean
 
The showDebugToolBox attribute expects a boolean value that, when true, displays a toolbox icon for debugging. The default value is false.
showImagesToolBox Boolean
 
The showImagesToolBox attribute expects a boolean value that, when true, displays an image selection toolbox icon. The default value is false.
showLinksToolBox Boolean
 
The showLinksToolBox attribute expects a boolean value that, when true, displays a link selection toolbox icon. The default value is false.
showPropertiesToolBox Boolean
 
The showPropertiesToolBox attribute expects a boolean value that, when true, displays a properties toolbox icon. The default value is false.
showTablesToolBox Boolean
 
The showTablesToolBox attribute expects a boolean value that, when true, displays a tables toolbox icon. The default value is false.
style CSS Style
 
The style attribute sets the CSS style definition to be applied to this component when it is rendered.
styleClass CSS Class
 
The styleClass attribute sets the CSS class to apply to this component when it is rendered.
type Text
 
validator Text
 
The validator attribute accepts a method-binding expression representing a validator method that will be called when the JSF framework validates this component. A validator method must be a public method that takes FacesContext, UIComponent, and Object parameters, with a return type of void.
value Text
 
The value attribute sets the current value for this component.
valueChangeListener Text
 
The valueChangeListener attribute accepts a method-binding expression representing a value change listener method to be notified when a new value has been set for this input component. A value change listener method must be a public method that takes a ValueChangeEvent parameter, with a return type of void.
visibleOnUserRole Text
 
The visibleOnUserRole attribute determines if this component will be visible or not depending on the user's roles.