Text
Full Panel
Full Panel
Inside j:inputGrid
Value
Outside j:inputGrid
Value
Data

Markup

The component jtp:inputMarkup is encapsulating the data entry for different markup types:

  • text with a p:textArea
  • xhtml with a p:textEditor

Several of these markup types may be combined and ordered horizontally in one panel by encompassing them in an element with the styleClass  jeesl-editor-list . It is required to have maven artifact  org.primefaces.extensions:resources-ckeditor:8.0 included.

 

A related component for output of the entered data is jtp:outputMarkup .

<p:panel styleClass="jeesl-panel" header="Text">
	<f:facet name="actions">
		<j:svg type="jeeslSave" listener="#{componentInputMarkupBean.saveText()}" update="@form"/>
	</f:facet>
	<jtp:inputMarkup value="#{componentInputMarkupBean.mText}"/>
</p:panel>
Full Panel