JBoss Rich Faces SVN: r11823 - trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: dmorozov
Date: 2008-12-16 11:23:40 -0500 (Tue, 16 Dec 2008)
New Revision: 11823
Modified:
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
Log:
https://jira.jboss.org/jira/browse/RF-4583
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-12-16 16:08:53 UTC (rev 11822)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-12-16 16:23:40 UTC (rev 11823)
@@ -408,6 +408,7 @@
iframe.style.position = "absolute";
iframe.frameBorder="0";
iframe.scrolling="no";
+ iframe.src="blank.html";
iframe.style.width = width;
17 years, 5 months
JBoss Rich Faces SVN: r11822 - trunk/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-12-16 11:08:53 -0500 (Tue, 16 Dec 2008)
New Revision: 11822
Modified:
trunk/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
Log:
https://jira.jboss.org/jira/browse/RF-4723
Modified: trunk/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
===================================================================
--- trunk/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js 2008-12-16 16:04:07 UTC (rev 11821)
+++ trunk/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js 2008-12-16 16:08:53 UTC (rev 11822)
@@ -371,7 +371,7 @@
this.shuttleTable.parentNode.scrollTop += increment;
}
}
- Event.stop(event);
+ if (event) Event.stop(event);
},
setFocus : function() {
17 years, 5 months
JBoss Rich Faces SVN: r11821 - Reports/3.3.0 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2008-12-16 11:04:07 -0500 (Tue, 16 Dec 2008)
New Revision: 11821
Modified:
trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
Log:
Modified: trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
===================================================================
(Binary files differ)
17 years, 5 months
JBoss Rich Faces SVN: r11820 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: editor/examples and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
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">
17 years, 5 months
JBoss Rich Faces SVN: r11819 - Reports/3.3.0 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2008-12-16 10:50:26 -0500 (Tue, 16 Dec 2008)
New Revision: 11819
Added:
trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
Log:
Added: trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/qa/Test Reports/3.3.0/ComponentsAssignment3.3.0.BETA4.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 5 months
JBoss Rich Faces SVN: r11818 - trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-12-16 10:46:33 -0500 (Tue, 16 Dec 2008)
New Revision: 11818
Modified:
trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
Log:
Remove erroneous test case (RF-5228)
Modified: trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-16 15:36:58 UTC (rev 11817)
+++ trunk/test-applications/seleniumTest/richfaces/src/test/java/org/richfaces/testng/CalendarTest.java 2008-12-16 15:46:33 UTC (rev 11818)
@@ -424,7 +424,9 @@
tester.testProcessAttribute();
}
- @Test
+
+ // Erroneous test case.
+ /* @Test
public void testNULLModel(Template template) {
renderPage(template, RESET_METHOD);
initIds(getParentId());
@@ -437,7 +439,7 @@
Assert.assertTrue(runScript("window.done").equals(Boolean.FALSE.toString().toLowerCase()), "Change of current date should not force ajax request in case of NULL dat model.");
- }
+ }*/
@Test
17 years, 5 months
JBoss Rich Faces SVN: r11817 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/support.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-12-16 10:36:58 -0500 (Tue, 16 Dec 2008)
New Revision: 11817
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/support/dropDowns.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-5147
language is checked
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/support/dropDowns.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/support/dropDowns.xhtml 2008-12-16 15:16:28 UTC (rev 11816)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/support/dropDowns.xhtml 2008-12-16 15:36:58 UTC (rev 11817)
@@ -10,16 +10,16 @@
<p>
One of the most frequently asked question from the community is about the
- problems while trying to create so called dependent selects.
+ problems occurring while trying to create so called dependent selects.
</p>
<p>
- So there you could explore simple sample of this case and check the source
+ Here you could explore a simple sample of this case and check the source
code used.
</p>
<p>
- After you select the produce type - the second select list will be populated
- and contains the items of this type. And if you change the type it will
- be updated again wih proper values.
+ After you select the produce type, the second select list is populated
+ and contains the items of this type, and if you change the type it will
+ be updated again with proper values.
</p>
<fieldset class="demo_fieldset">
17 years, 5 months
JBoss Rich Faces SVN: r11816 - trunk/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-12-16 10:16:28 -0500 (Tue, 16 Dec 2008)
New Revision: 11816
Added:
trunk/docs/userguide/en/src/main/resources/images/inputNumberSlider4.png
Log:
RF-5287: describeInputNumberSlider 2 new features
Added: trunk/docs/userguide/en/src/main/resources/images/inputNumberSlider4.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/inputNumberSlider4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 5 months
JBoss Rich Faces SVN: r11815 - trunk/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2008-12-16 10:12:09 -0500 (Tue, 16 Dec 2008)
New Revision: 11815
Modified:
trunk/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js
Log:
https://jira.jboss.org/jira/browse/RF-3426
Modified: trunk/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js
===================================================================
--- trunk/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js 2008-12-16 14:45:20 UTC (rev 11814)
+++ trunk/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js 2008-12-16 15:12:09 UTC (rev 11815)
@@ -76,19 +76,19 @@
queuedId : '',
- LMPopUp:function(menuName, isCurrent) {
+ LMPopUp:function(menuName, isCurrent, event) {
if (!this.loaded || ( this.isVisible(menuName) && !isCurrent)) {
return;
}
if (menuName == this.father[this.layerPoppedUp]) {
- this.LMPopUpL(this.layerPoppedUp, false);
+ this.LMPopUpL(this.layerPoppedUp, false, event);
} else if (this.father[menuName] == this.layerPoppedUp) {
- this.LMPopUpL(menuName, true);
+ this.LMPopUpL(menuName, true, event);
} else {
//this.shutdown();
foobar = menuName;
do {
- this.LMPopUpL(foobar, true);
+ this.LMPopUpL(foobar, true, event);
foobar = this.father[foobar];
} while (foobar);
}
@@ -103,7 +103,7 @@
* @param menuName
* @param visibleFlag
*/
- LMPopUpL: function(menuName, visibleFlag) {
+ LMPopUpL: function(menuName, visibleFlag, event) {
if (!this.loaded) {
return;
}
@@ -118,10 +118,10 @@
if (visible && !visibleFlag) {
if (menuLayer) {
if (menuLayer.eventOnClose) {
- menuLayer.eventOnClose();
+ menuLayer.eventOnClose(event);
}
if (menuLayer.eventOnCollapse) {
- menuLayer.eventOnCollapse();
+ menuLayer.eventOnCollapse(event);
}
if (menuLayer.refItem) {
menuLayer.refItem.highLightGroup(false);
@@ -130,10 +130,10 @@
} else if (!visible && visibleFlag) {
if (menuLayer) {
if (menuLayer.eventOnOpen) {
- menuLayer.eventOnOpen();
+ menuLayer.eventOnOpen(event);
}
if (menuLayer.eventOnExpand) {
- menuLayer.eventOnExpand();
+ menuLayer.eventOnExpand(event);
}
if (menuLayer.level>0) {
@@ -142,7 +142,7 @@
} while (menuLayer.level > 0);
if (menuLayer && menuLayer.eventOnGroupActivate) {
- menuLayer.eventOnGroupActivate();
+ menuLayer.eventOnGroupActivate(event);
}
}
}
@@ -431,7 +431,7 @@
this.layer.style.display=layer_display;
this.layer.style.visibility='';
- RichFaces.Menu.Layers.LMPopUp(this.layer.id, false);
+ RichFaces.Menu.Layers.LMPopUp(this.layer.id, false,e);
RichFaces.Menu.Layers.clearLMTO();
}.bind(this);
}
@@ -1052,7 +1052,7 @@
hideMe: function(e){
RichFaces.Menu.Layers.clearPopUpTO();
RichFaces.Menu.Layers.levels[this.level] = null;
- RichFaces.Menu.Layers.LMPopUpL(this.id, false);
+ RichFaces.Menu.Layers.LMPopUpL(this.id, false,e);
// if (this.eventOnClose) this.eventOnClose();
},
asDropDown: function(topLevel, bindElementId, onEvt, offEvt, options){
17 years, 5 months
JBoss Rich Faces SVN: r11814 - in trunk/ui/inplaceInput/src/main: resources/org/richfaces/renderkit/html/scripts and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-12-16 09:45:20 -0500 (Tue, 16 Dec 2008)
New Revision: 11814
Modified:
trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
Log:
https://jira.jboss.org/jira/browse/RF-5284
Modified: trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
===================================================================
--- trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-12-16 14:25:20 UTC (rev 11813)
+++ trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-12-16 14:45:20 UTC (rev 11814)
@@ -143,6 +143,7 @@
options.addEventHandler("onviewactivation");
options.addEventHandler("oneditactivated");
options.addEventHandler("onviewactivated");
+ options.addEventHandler("onchange");
events.append(options.toScript());
return events.toString();
Modified: trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
===================================================================
--- trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-12-16 14:25:20 UTC (rev 11813)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-12-16 14:45:20 UTC (rev 11814)
@@ -1,3 +1,7 @@
+if(!window.LOG){
+ window.LOG = {warn:function(){}};
+}
+
if (!window.Richfaces) window.Richfaces = {};
Richfaces.InplaceInput = Class.create();
@@ -335,7 +339,7 @@
if (this.tempValueKeeper != userValue) {
this.tempValueKeeper.value = userValue;
}
- this.invokeEvent(this.events.onchange, this.inplaceSelect, "onchange", param);
+ this.invokeEvent(this.events.onchange, this.inplaceInput, "onchange", userValue);
} else {
this.startViewState();
}
17 years, 5 months