JBoss Rich Faces SVN: r13974 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-04-30 12:52:05 -0400 (Thu, 30 Apr 2009)
New Revision: 13974
Modified:
trunk/docs/userguide/en/src/main/docbook/included/columns.xml
Log:
https://jira.jboss.org/jira/browse/RF-6481
documented
Modified: trunk/docs/userguide/en/src/main/docbook/included/columns.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columns.xml 2009-04-30 16:51:07 UTC (rev 13973)
+++ trunk/docs/userguide/en/src/main/docbook/included/columns.xml 2009-04-30 16:52:05 UTC (rev 13974)
@@ -105,7 +105,7 @@
<property>"columns"</property>
</emphasis> attribute defines the count of columns. </para>
<para> The <emphasis>
- <property>"rowspan"</property>
+ <property>"rowspan"</property>
</emphasis> attribute defines the number of rows to be displayed. If
the value of this attribute is zero, all remaining rows in the table
are displayed on a page. </para>
@@ -311,6 +311,22 @@
</note>
+<note><title>Note:</title>
+ <para>Since 3.3.0GA <emphasis role="bold"><property><rich:columns></property></emphasis> requires explicit definition of <emphasis><property>"id"</property></emphasis> for children components to ensure that decode process works properly.
+ The example of how you can define unique <emphasis><property>"id"</property></emphasis> for children component: </para>
+ <programlisting role="XML"><![CDATA[...
+<rich:columns value="#{bean.columns}" var="col" index="ind" ....>
+<h:inputText id="input#{ind}" value="">
+<a4j:support id="support#{ind}" event="onchange" reRender="someId" />
+</h:inputText>
+</rich:columns>
+...]]></programlisting>
+ <para>Only if <emphasis><property>"id"</property></emphasis> defined as shown above Ajax after onchange event will be processed as expected. </para>
+
+</note>
+
+
+
<para> Information about sorting and filtering you can find <link
linkend="sortAndFilter"> in the corresponding section</link> . </para>
15 years, 8 months
JBoss Rich Faces SVN: r13973 - trunk/ui/tabPanel/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-04-30 12:51:07 -0400 (Thu, 30 Apr 2009)
New Revision: 13973
Modified:
trunk/ui/tabPanel/src/main/java/org/richfaces/renderkit/TabPanelRendererBase.java
Log:
https://jira.jboss.org/jira/browse/RF-6911
Modified: trunk/ui/tabPanel/src/main/java/org/richfaces/renderkit/TabPanelRendererBase.java
===================================================================
--- trunk/ui/tabPanel/src/main/java/org/richfaces/renderkit/TabPanelRendererBase.java 2009-04-30 16:25:32 UTC (rev 13972)
+++ trunk/ui/tabPanel/src/main/java/org/richfaces/renderkit/TabPanelRendererBase.java 2009-04-30 16:51:07 UTC (rev 13973)
@@ -24,8 +24,10 @@
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
+import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
+import java.util.Set;
import javax.faces.FacesException;
import javax.faces.component.UIComponent;
@@ -339,7 +341,7 @@
TabInfoCollector tabInfoCollector = getTabInfoCollector();
- UITab prevTab = null;
+ Set<Object> tabNamesSet = new HashSet<Object>();
for (Iterator iter = pane.getRenderedTabs(); iter.hasNext();) {
UITab tab = (UITab) iter.next();
@@ -350,10 +352,8 @@
clientSide = UISwitchablePanel.CLIENT_METHOD.equals(tab.getSwitchTypeOrDefault());
}
- if(prevTab != null){
- if(prevTab.getName().equals(tab.getName())){
- throw new FacesException(TABS_WITH_SAME_NAMES_ERROR);
- };
+ if (!tabNamesSet.add(tab.getName())) {
+ throw new FacesException(TABS_WITH_SAME_NAMES_ERROR);
}
tab.encodeTab(context, active);
@@ -361,8 +361,6 @@
if (!tab.isDisabled()) {
tabs.add(tabInfoCollector.collectTabInfo(context, tab));
}
-
- prevTab = tab;
}
// Store flag for exist client-side tabs.
15 years, 8 months
JBoss Rich Faces SVN: r13972 - trunk/docs.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2009-04-30 12:25:32 -0400 (Thu, 30 Apr 2009)
New Revision: 13972
Modified:
trunk/docs/release.sh
Log:
Modified: trunk/docs/release.sh
===================================================================
--- trunk/docs/release.sh 2009-04-30 14:49:05 UTC (rev 13971)
+++ trunk/docs/release.sh 2009-04-30 16:25:32 UTC (rev 13972)
@@ -80,8 +80,8 @@
svn status | grep '^\!' | grep -o -P [^\!^" ""\n\r?"]+ | while read -r;do svn rm $REPLY >> $LOG 2>&1; done || die "Something wrong with svn remove. See the log file"
#Try to commit files
- printLog "Try to commit files..."
- svn commit --username $USER --password $PASS --message $MESSAGE >> $LOG 2>&1 || die "Something wrong with svn commit. See the log file"
+ #printLog "Try to commit files..."
+ #svn commit --username $USER --password $PASS --message $MESSAGE >> $LOG 2>&1 || die "Something wrong with svn commit. See the log file"
done
}
15 years, 8 months
JBoss Rich Faces SVN: r13971 - in trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum: testng and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-04-30 10:49:05 -0400 (Thu, 30 Apr 2009)
New Revision: 13971
Modified:
trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/RealWorldHelper.java
trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/LoginTest.java
trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/OpenAreasUseCasesTest.java
Log:
RF-6909
Modified: trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/RealWorldHelper.java
===================================================================
--- trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/RealWorldHelper.java 2009-04-30 14:35:30 UTC (rev 13970)
+++ trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/RealWorldHelper.java 2009-04-30 14:49:05 UTC (rev 13971)
@@ -46,8 +46,10 @@
}
public static interface LogInOutArea {
+ String PATH = "xpath=id('logInOutMenu')";
String LOGIN_LINK_ID = "loginPanelShowlink";
- String LOGOUT_LINK_PATH = "//*[@id='logInOutMenu']//div/a";
+ String REGISTER_LINK_PATH = PATH + "/descendant::a[2]";
+ String LOGOUT_LINK_PATH = REGISTER_LINK_PATH;
String USER_INFO_LINK_PATH = "//a[@class='logged-user']";
}
@@ -92,6 +94,13 @@
public static interface UserProfileArea {
String NAME_INPUT_ID = IndexPage.MAIN_FORM_ID + ":loginName";
+ String PASSWORD_INPUT_ID = IndexPage.MAIN_FORM_ID + ":password";
+ String CONFIRM_PASSWORD_INPUT_ID = IndexPage.MAIN_FORM_ID + ":confirmPassword";
+ String FIRST_NAME_INPUT_ID = IndexPage.MAIN_FORM_ID + ":firstname";
+ String SECOND_NAME_INPUT_ID = IndexPage.MAIN_FORM_ID + ":secondname";
+ String BIRTH_DATE_INPUT_ID = IndexPage.MAIN_FORM_ID + ":birthDateInputDate";
+ String EMAIL_INPUT_ID = IndexPage.MAIN_FORM_ID + ":email";
+ String REGISTER_BUTTON_PATH = "//*[@class='content_box']/descendant::*[@class='photoalbumButton'][1]//input";
}
public static interface FilesUploadArea {
@@ -103,8 +112,11 @@
}
}
+ public static void login(Selenium selenium) {
+ login(selenium, UserInfoConstants.LOGIN_NAME, UserInfoConstants.LOGIN_PASSWORD);
+ }
- public static void login(Selenium selenium) {
+ public static void login(Selenium selenium, String name, String password) {
selenium.click(HtmlConstants.LogInOutArea.LOGIN_LINK_ID);
try {
Thread.sleep(5000);
@@ -120,8 +132,8 @@
Assert.fail("Password input should be of 'password' type");
}
- selenium.type(HtmlConstants.LoginPanel.usernameId, UserInfoConstants.LOGIN_NAME);
- selenium.type(HtmlConstants.LoginPanel.passwordId, UserInfoConstants.LOGIN_PASSWORD);
+ selenium.type(HtmlConstants.LoginPanel.usernameId, name);
+ selenium.type(HtmlConstants.LoginPanel.passwordId, password);
selenium.click(HtmlConstants.LoginPanel.loginButtonPath);
waitForAjaxCompletion(selenium);
@@ -139,10 +151,16 @@
}
public static void testUserProfile(Selenium selenium) {
- String name = selenium.getValue(HtmlConstants.UserProfileArea.NAME_INPUT_ID);
- Assert.assertEquals(name, UserInfoConstants.LOGIN_NAME);
+ testUserProfile(selenium, null);
}
+ public static void testUserProfile(Selenium selenium, String name) {
+ Assert.assertTrue(selenium.isVisible(HtmlConstants.UserProfileArea.NAME_INPUT_ID));
+ if (name != null) {
+ Assert.assertEquals(selenium.getValue(HtmlConstants.UserProfileArea.NAME_INPUT_ID), name);
+ }
+ }
+
public static void testFilesUpload(Selenium selenium) {
Assert.assertTrue(selenium.isVisible(HtmlConstants.FilesUploadArea.FILE_UPLOAD_ID));
}
@@ -184,13 +202,10 @@
}
public static void openAlbumFromPreview(Selenium selenium) {
- openAlbumFromPreview(selenium, null);
+ openAlbumFromPreview(selenium, selenium.getText(HtmlConstants.AlbumArea.PREVIEW_PATH + HtmlConstants.AlbumArea.PREVIEW_NAME_PATH_SUFFIX));
}
public static void openAlbumFromPreview(Selenium selenium, String albumName) {
- if (albumName == null) {
- albumName = selenium.getText(HtmlConstants.AlbumArea.PREVIEW_PATH + HtmlConstants.AlbumArea.PREVIEW_NAME_PATH_SUFFIX);
- }
boolean presented = false;
int xpathCount = selenium.getXpathCount(HtmlConstants.AlbumArea.PREVIEW_PATH).intValue();
for (int i = 1; i <= xpathCount && !presented; i++) {
@@ -247,13 +262,10 @@
}
public static void openImageFromPreview(Selenium selenium) {
- openImageFromPreview(selenium, null);
+ openImageFromPreview(selenium, selenium.getText(HtmlConstants.ImageArea.PREVIEW_PATH + HtmlConstants.ImageArea.PREVIEW_NAME_PATH_SUFFIX));
}
public static void openImageFromPreview(Selenium selenium, String imageName) {
- if (imageName == null) {
- imageName = selenium.getText(HtmlConstants.ImageArea.PREVIEW_PATH + HtmlConstants.ImageArea.PREVIEW_NAME_PATH_SUFFIX);
- }
boolean presented = false;
int xpathCount = selenium.getXpathCount(HtmlConstants.ImageArea.PREVIEW_PATH).intValue();
for (int i = 1; i <= xpathCount && !presented; i++) {
Modified: trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/LoginTest.java
===================================================================
--- trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/LoginTest.java 2009-04-30 14:35:30 UTC (rev 13970)
+++ trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/LoginTest.java 2009-04-30 14:49:05 UTC (rev 13971)
@@ -3,8 +3,11 @@
*/
package org.richfaces.photoalbum.testng;
+import junit.framework.Assert;
+
import org.richfaces.photoalbum.RealWorldHelper;
import org.richfaces.photoalbum.SeleniumTestBase;
+import org.richfaces.photoalbum.RealWorldHelper.HtmlConstants;
import org.testng.annotations.Test;
/**
@@ -21,4 +24,24 @@
RealWorldHelper.login(selenium);
RealWorldHelper.logout(selenium);
}
+
+ @Test
+ public void testRegistration() {
+ renderPage();
+ String name = "New user";
+ String password = "pass";
+ selenium.click(HtmlConstants.LogInOutArea.REGISTER_LINK_PATH);
+ waitForAjaxCompletion();
+ RealWorldHelper.testUserProfile(selenium);
+ selenium.type(HtmlConstants.UserProfileArea.NAME_INPUT_ID, name);
+ selenium.type(HtmlConstants.UserProfileArea.PASSWORD_INPUT_ID, password);
+ selenium.type(HtmlConstants.UserProfileArea.CONFIRM_PASSWORD_INPUT_ID, password);
+ selenium.type(HtmlConstants.UserProfileArea.FIRST_NAME_INPUT_ID, "first");
+ selenium.type(HtmlConstants.UserProfileArea.SECOND_NAME_INPUT_ID, "second");
+ selenium.type(HtmlConstants.UserProfileArea.BIRTH_DATE_INPUT_ID, "Jan 1, 1");
+ selenium.type(HtmlConstants.UserProfileArea.EMAIL_INPUT_ID, "user(a)exadel.com");
+ selenium.click(HtmlConstants.UserProfileArea.REGISTER_BUTTON_PATH);
+ waitForAjaxCompletion();
+ Assert.assertTrue(RealWorldHelper.isLogined(selenium, name));
+ }
}
Modified: trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/OpenAreasUseCasesTest.java
===================================================================
--- trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/OpenAreasUseCasesTest.java 2009-04-30 14:35:30 UTC (rev 13970)
+++ trunk/examples/photoalbum/tests/src/test/java/org/richfaces/photoalbum/testng/OpenAreasUseCasesTest.java 2009-04-30 14:49:05 UTC (rev 13971)
@@ -6,6 +6,7 @@
import org.richfaces.photoalbum.RealWorldHelper;
import org.richfaces.photoalbum.SeleniumTestBase;
import org.richfaces.photoalbum.RealWorldHelper.HtmlConstants;
+import org.richfaces.photoalbum.RealWorldHelper.UserInfoConstants;
import org.testng.annotations.Test;
/**
@@ -35,7 +36,7 @@
RealWorldHelper.login(selenium);
selenium.click(HtmlConstants.LogInOutArea.USER_INFO_LINK_PATH);
waitForAjaxCompletion();
- RealWorldHelper.testUserProfile(selenium);
+ RealWorldHelper.testUserProfile(selenium, UserInfoConstants.LOGIN_NAME);
}
@Test
15 years, 8 months
JBoss Rich Faces SVN: r13970 - trunk/ui/combobox/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: ochikvina
Date: 2009-04-30 10:35:30 -0400 (Thu, 30 Apr 2009)
New Revision: 13970
Modified:
trunk/ui/combobox/src/main/config/component/combobox.xml
Log:
https://jira.jboss.org/jira/browse/RF-6233 - the event handlers descriptions are unified;
Modified: trunk/ui/combobox/src/main/config/component/combobox.xml
===================================================================
--- trunk/ui/combobox/src/main/config/component/combobox.xml 2009-04-30 14:33:21 UTC (rev 13969)
+++ trunk/ui/combobox/src/main/config/component/combobox.xml 2009-04-30 14:35:30 UTC (rev 13970)
@@ -107,13 +107,13 @@
<property>
<name>onlistcall</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; a list is called</description>
+ <description>The clientside script method to be called when the list is called</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onlistclose</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; a list is closed</description>
+ <description>The clientside script method to be called when the list is closed</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
15 years, 8 months
JBoss Rich Faces SVN: r13969 - trunk/ui/pickList/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: ochikvina
Date: 2009-04-30 10:33:21 -0400 (Thu, 30 Apr 2009)
New Revision: 13969
Modified:
trunk/ui/pickList/src/main/config/component/picklist.xml
Log:
https://jira.jboss.org/jira/browse/RF-6233 - the event handlers descriptions are unified;
Modified: trunk/ui/pickList/src/main/config/component/picklist.xml
===================================================================
--- trunk/ui/pickList/src/main/config/component/picklist.xml 2009-04-30 14:31:47 UTC (rev 13968)
+++ trunk/ui/pickList/src/main/config/component/picklist.xml 2009-04-30 14:33:21 UTC (rev 13969)
@@ -273,12 +273,12 @@
<property>
<name>onlistchanged</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a list is changed</description>
+ <description>The client side script method to be called before the list is changed</description>
</property>
<property>
<name>onlistchange</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; before a list is changed</description>
+ <description>The client side script method to be called when the list is changed</description>
</property>
<property>
<name>disabled</name>
@@ -324,12 +324,12 @@
<property>
<name>onfocus</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; the element got the focus</description>
+ <description>The client side script method to be called when the component gets the focus</description>
</property>
<property>
<name>onblur</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; the element lost the focus</description>
+ <description>The client side script method to be called when the component loses the focus</description>
</property>
<property>
15 years, 8 months
JBoss Rich Faces SVN: r13968 - trunk/cdk/generator/src/main/resources/META-INF/schema/entities.
by richfaces-svn-commits@lists.jboss.org
Author: ochikvina
Date: 2009-04-30 10:31:47 -0400 (Thu, 30 Apr 2009)
New Revision: 13968
Modified:
trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_events.ent
Log:
https://jira.jboss.org/jira/browse/RF-6233 - correcting the event handlers descriptions;
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_events.ent
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_events.ent 2009-04-30 14:16:02 UTC (rev 13967)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/entities/html_events.ent 2009-04-30 14:31:47 UTC (rev 13968)
@@ -28,7 +28,7 @@
<property>
<name>onmousedown</name>
<classname>java.lang.String</classname>
- <description>The client side script method to be called when a pointer button is pressed down over the element</description>
+ <description>The client side script method to be called when a mouse button is pressed down over the element</description>
</property>
<property>
<name>onmousemove</name>
@@ -48,7 +48,7 @@
<property>
<name>onmouseup</name>
<classname>java.lang.String</classname>
- <description>The client side script method to be called when a pointer button is released</description>
+ <description>The client side script method to be called when a mouse button is released</description>
</property>
</properties>
15 years, 8 months
JBoss Rich Faces SVN: r13967 - trunk/ui/modal-panel/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: ochikvina
Date: 2009-04-30 10:16:02 -0400 (Thu, 30 Apr 2009)
New Revision: 13967
Modified:
trunk/ui/modal-panel/src/main/config/component/modalPanel.xml
Log:
https://jira.jboss.org/jira/browse/RF-6233 - the event handlers descriptions are unified;
Modified: trunk/ui/modal-panel/src/main/config/component/modalPanel.xml
===================================================================
--- trunk/ui/modal-panel/src/main/config/component/modalPanel.xml 2009-04-30 13:57:34 UTC (rev 13966)
+++ trunk/ui/modal-panel/src/main/config/component/modalPanel.xml 2009-04-30 14:16:02 UTC (rev 13967)
@@ -93,13 +93,13 @@
<property>
<name>resizeable</name>
<classname>boolean</classname>
- <description> if "true" there is possibility to change component size. Default value is "true".</description>
+ <description>If "true" there is possibility to change component size. Default value is "true".</description>
<defaultvalue>true</defaultvalue>
</property>
<property>
<name>moveable</name>
<classname>boolean</classname>
- <description> if "true" there is possibility to move component. Default value is "true". </description>
+ <description>If "true" there is possibility to move component. Default value is "true". </description>
<defaultvalue>true</defaultvalue>
</property>
<property>
@@ -124,41 +124,41 @@
<property>
<name>onshow</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; after panel is opened </description>
+ <description>The client side script method to be called when the modal panel is displayed</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onhide</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; after panel is closed </description>
+ <description>The client side script method to be called after the modal panel is hidden</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmove</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; before panel is moved </description>
+ <description>The client side script method to be called before the modal panel is moved</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onbeforeshow</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; before panel is opened </description>
+ <description>The client side script method to be called before the modal panel is opened</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onbeforehide</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; before panel is hidden </description>
+ <description>The client side script method to be called before the modal panel is hidden</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onresize</name>
<classname>java.lang.String</classname>
- <description>HTML: script expression; panel is resized </description>
+ <description>The client side script method to be called when the modal panel is resized</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
@@ -238,49 +238,49 @@
<property>
<name>onmaskclick</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a pointer button is clicked outside modalPanel</description>
+ <description>The client side script method to be called when a left mouse button is clicked outside the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskdblclick</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a pointer button is double-clicked outside modalPanel</description>
+ <description>The client side script method to be called when a left mouse button is double-clicked outside the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskcontextmenu</name>
<classname>java.lang.String</classname>
- <description> JavaScript handler to be called on right click outside modalPanel</description>
+ <description>The client side script method to be called when a right mouse button is clicked outside the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskmouseup</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a pointer button is released outside modalPanel</description>
+ <description>The client side script method to be called when a mouse button is released outside the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskmousedown</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a pointer button is pressed down outside modalPanel</description>
+ <description>The client side script method to be called when a mouse button is pressed down outside the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskmousemove</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a pointer button is moved outside modalPanel</description>
+ <description>The client side script method to be called when a pointer is moved outside the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskmouseover</name>
<classname>java.lang.String</classname>
- <description> HTML: a script expression; a pointer button is moved onto modalPanel</description>
+ <description>The client side script method to be called when a pointer is moved onto the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
<name>onmaskmouseout</name>
<classname>java.lang.String</classname>
- <description>HTML: a script expression; a pointer button is moved away modalPanel</description>
+ <description>The client side script method to be called when a pointer is moved away from the modal panel</description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
<property>
15 years, 8 months
JBoss Rich Faces SVN: r13966 - trunk/examples/photoalbum/source/web/src/main/webapp/includes.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-30 09:57:34 -0400 (Thu, 30 Apr 2009)
New Revision: 13966
Modified:
trunk/examples/photoalbum/source/web/src/main/webapp/includes/register.xhtml
Log:
remove form rerender
Modified: trunk/examples/photoalbum/source/web/src/main/webapp/includes/register.xhtml
===================================================================
(Binary files differ)
15 years, 8 months
JBoss Rich Faces SVN: r13965 - trunk/examples/photoalbum/source/web/src/main/webapp/includes/shelf.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-30 09:55:54 -0400 (Thu, 30 Apr 2009)
New Revision: 13965
Modified:
trunk/examples/photoalbum/source/web/src/main/webapp/includes/shelf/createShelf.xhtml
trunk/examples/photoalbum/source/web/src/main/webapp/includes/shelf/shelfInfo.xhtml
Log:
remove form rerender
Modified: trunk/examples/photoalbum/source/web/src/main/webapp/includes/shelf/createShelf.xhtml
===================================================================
(Binary files differ)
Modified: trunk/examples/photoalbum/source/web/src/main/webapp/includes/shelf/shelfInfo.xhtml
===================================================================
(Binary files differ)
15 years, 8 months