[richfaces-svn-commits] JBoss Rich Faces SVN: r11820 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: editor/examples and 1 other directories.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Tue Dec 16 10:50:58 EST 2008
Author: ilya_shaikovsky
Date: 2008-12-16 10:50:58 -0500 (Tue, 16 Dec 2008)
New Revision: 11820
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/repeater.xhtml
Log:
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml 2008-12-16 15:50:26 UTC (rev 11819)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/examples/editor.xhtml 2008-12-16 15:50:58 UTC (rev 11820)
@@ -16,10 +16,11 @@
</style>
<h:form>
<h:panelGrid columns="2" width="100%" columnClasses="column,column">
- <rich:editor configuration="#{editorBean.currentConfiguration}" id="editor" width="400" viewMode = "#{editorBean.viewMode}" value="#{editorBean.value}">
- <a4j:support event="onchange" reRender="result" ajaxSingle="true" requestDelay="1000" rendered="#{editorBean.liveUpdatesEnabled}"/>
- </rich:editor>
-
+ <h:panelGroup style="height:310px;" layout="block">
+ <rich:editor configuration="#{editorBean.currentConfiguration}" id="editor" width="400" height="300" viewMode = "#{editorBean.viewMode}" value="#{editorBean.value}">
+ <a4j:support event="onchange" reRender="result" ajaxSingle="true" requestDelay="1000" rendered="#{editorBean.liveUpdatesEnabled}"/>
+ </rich:editor>
+ </h:panelGroup>
<rich:panel>
<f:facet name="header">
<h:outputText value="Editor Settings"/>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/usage.xhtml 2008-12-16 15:50:26 UTC (rev 11819)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/editor/usage.xhtml 2008-12-16 15:50:58 UTC (rev 11820)
@@ -8,8 +8,24 @@
<ui:composition template="/templates/component-sample.xhtml">
<ui:define name="sample">
<p>
- DESCRIPTION
+ <b>RichFaces Editor</b> component provides possibility to use <b>tinyMCE
+ widget </b>as first class citizen within JSF environment.
</p>
+ <p>
+ It has almost all the properties and features of original widget
+ and adds next additional features:
+ </p>
+ <ul>
+ <li>
+ Seam text supported out of the box using built-in converter.
+ </li>
+ <li>
+ RichFaces skinnability
+ </li>
+ <li>
+ Manageable configurations mechanism implemented.
+ </li>
+ </ul>
<fieldset class="demo_fieldset">
<legend class="demo_legend">Editor demo</legend>
@@ -21,7 +37,7 @@
</ui:include>
</div>
</fieldset>
+<a4j:log popup="false"></a4j:log>
</ui:define>
-
</ui:composition>
</html>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/repeater.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/repeater.xhtml 2008-12-16 15:50:26 UTC (rev 11819)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/queue/examples/repeater.xhtml 2008-12-16 15:50:58 UTC (rev 11820)
@@ -41,16 +41,6 @@
<h:outputText value="Ignore Duplicated Responces" />
<h:selectBooleanCheckbox value="#{queueBean.ignoreDupResponces}" />
- <h:outputText value="Queue size" />
- <h:inputText value="#{queueBean.size}">
- <f:convertNumber integerOnly="true" maxIntegerDigits="5" />
- </h:inputText>
- <h:outputText value="Size Exceed Behavior" />
- <h:selectOneMenu value="#{queueBean.sizeExceededBehavior}">
- <f:selectItems value="#{queueBean.strategies}" />
- </h:selectOneMenu>
-
-
<h:outputText value="Disable Queue" />
<h:selectBooleanCheckbox value="#{queueBean.disabled}" />
<f:facet name="footer">
More information about the richfaces-svn-commits
mailing list