JBoss Rich Faces SVN: r7488 - in trunk/ui/inplaceInput/src/main: java/org/richfaces/renderkit and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-03-31 12:40:37 -0400 (Mon, 31 Mar 2008)
New Revision: 7488
Modified:
trunk/ui/inplaceInput/src/main/config/component/inplaceinput.xml
trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx
Log:
fix for ajax reRender
Modified: trunk/ui/inplaceInput/src/main/config/component/inplaceinput.xml
===================================================================
--- trunk/ui/inplaceInput/src/main/config/component/inplaceinput.xml 2008-03-31 16:22:48 UTC (rev 7487)
+++ trunk/ui/inplaceInput/src/main/config/component/inplaceinput.xml 2008-03-31 16:40:37 UTC (rev 7488)
@@ -64,7 +64,7 @@
<name>defaultLabel</name>
<classname>java.lang.String</classname>
<description>The attribute is used to display text while value is undefined</description>
- <defaultvalue><![CDATA["\u00a0\u00a0\u00a0"]]></defaultvalue>
+ <defaultvalue>"   "</defaultvalue>
</property>
<property>
<name>showControls</name>
Modified: trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
===================================================================
--- trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-03-31 16:22:48 UTC (rev 7487)
+++ trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-03-31 16:40:37 UTC (rev 7488)
@@ -120,7 +120,7 @@
String defaultLabel = (String)component.getAttributes().get("defaultLabel");
if (defaultLabel == null || defaultLabel.equals("")) {
- defaultLabel = "\u00a0\u00a0\u00a0";
+ defaultLabel = "   ";
}
options.addOption("defaultLabel", defaultLabel);
Modified: trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx
===================================================================
--- trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-03-31 16:22:48 UTC (rev 7487)
+++ trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-03-31 16:40:37 UTC (rev 7488)
@@ -36,7 +36,7 @@
fieldValue = "";
String defaultValue = (String)component.getAttributes().get("defaultLabel");
if(defaultValue == null || defaultValue.equals("")) {
- defaultValue = "\u00a0\u00a0\u00a0";
+ defaultValue = "   ";
}
value = defaultValue;
}
@@ -172,11 +172,9 @@
'#{clientId}ok', '#{clientId}cancel', '#{clientId}buttons','#{clientId}btns_shadow']);
</script>
</div>
- #{value}
-
+
<jsp:scriptlet>
-
-
+ writer.write(convertToString(variables.getVariable("value")));
if (!layout.equals("inline")) {
</jsp:scriptlet>
</div>
16 years, 9 months
JBoss Rich Faces SVN: r7487 - in branches/3.1.x/ui/modal-panel/src/main: templates/org/richfaces and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-03-31 12:22:48 -0400 (Mon, 31 Mar 2008)
New Revision: 7487
Modified:
branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/css/modalPanel.xcss
branches/3.1.x/ui/modal-panel/src/main/templates/org/richfaces/htmlModalPanel.jspx
Log:
http://jira.jboss.com/jira/browse/RF-2118 http://jira.jboss.com/jira/browse/RF-2728
Modified: branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/css/modalPanel.xcss
===================================================================
--- branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/css/modalPanel.xcss 2008-03-31 16:16:53 UTC (rev 7486)
+++ branches/3.1.x/ui/modal-panel/src/main/resources/org/richfaces/renderkit/html/css/modalPanel.xcss 2008-03-31 16:22:48 UTC (rev 7487)
@@ -29,6 +29,9 @@
margin: 0;
padding: 0;
background-color: inherit;
+ width: 1px;
+ height: 1px;
+ z-index: 9;
}
.dr-mpnl-resizer {
Modified: branches/3.1.x/ui/modal-panel/src/main/templates/org/richfaces/htmlModalPanel.jspx
===================================================================
--- branches/3.1.x/ui/modal-panel/src/main/templates/org/richfaces/htmlModalPanel.jspx 2008-03-31 16:16:53 UTC (rev 7486)
+++ branches/3.1.x/ui/modal-panel/src/main/templates/org/richfaces/htmlModalPanel.jspx 2008-03-31 16:22:48 UTC (rev 7487)
@@ -52,7 +52,7 @@
<div class="dr-mpnl-mask-div rich-mpnl-mask-div" id="#{clientId}CursorDiv"
style="filter: alpha(opacity=1); z-index: -200"></div>
- <div id="#{clientId}CDiv" class="dr-mpnl-panel rich-mpnl_panel" style="width: 1px; height: 1px; z-index: 2;">
+ <div id="#{clientId}CDiv" class="dr-mpnl-panel rich-mpnl_panel" >
<jsp:scriptlet>
<![CDATA[
16 years, 9 months
JBoss Rich Faces SVN: r7486 - trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-03-31 12:16:53 -0400 (Mon, 31 Mar 2008)
New Revision: 7486
Modified:
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
Log:
http://jira.jboss.com/jira/browse/RF-2884
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-03-31 16:14:48 UTC (rev 7485)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-03-31 16:16:53 UTC (rev 7486)
@@ -29,7 +29,7 @@
this.editEvent = this.attributes.editEvent.substring(2,this.attributes.editEvent.length);
- this.tempValueKeeper.style.top = Richfaces.getBorderWidth(this.tempValueKeeper, "t") + "px";
+ //this.tempValueKeeper.style.top = Richfaces.getBorderWidth(this.tempValueKeeper, "t") + "px";
this.initHandlers();
this.initEvents();
16 years, 9 months
JBoss Rich Faces SVN: r7485 - branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-03-31 12:14:48 -0400 (Mon, 31 Mar 2008)
New Revision: 7485
Modified:
branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx
branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx
Log:
http://jira.jboss.com/jira/browse/RF-2281
Modified: branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx
===================================================================
--- branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx 2008-03-31 16:02:01 UTC (rev 7484)
+++ branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuGroup.jspx 2008-03-31 16:14:48 UTC (rev 7485)
@@ -27,6 +27,7 @@
<f:call name="utils.encodePassThru" />
+ <tbody>
<tr id="row_#{clientId}"
class="#{this:getSelectedClass( context, component )}" >
<td class="dr-pmenu-nowrap #{this:getIconClass( context, component,'left')}">
@@ -49,9 +50,10 @@
</f:call>
</td>
</tr>
+ </tbody>
</table>
<vcp:body>
<f:call name="renderChildren" />
</vcp:body>
</div>
-</f:root>
\ No newline at end of file
+</f:root>
Modified: branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx
===================================================================
--- branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx 2008-03-31 16:02:01 UTC (rev 7484)
+++ branches/3.1.x/ui/panelmenu/src/main/templates/org/richfaces/htmlPanelMenuItem.jspx 2008-03-31 16:14:48 UTC (rev 7485)
@@ -23,6 +23,7 @@
<f:parameter value="onclick,onmousedown,onmouseup,onmousemove" />
</f:call>
+ <tbody>
<tr id="row_#{clientId}"
class="#{this:getSelectedClass( context, component )}" >
<td class="dr-pmenu-nowrap #{this:getIconClass( context, component,'left')}">
@@ -44,6 +45,7 @@
</f:call>
</td>
</tr>
+ </tbody>
</table>
</div>
</f:root>
16 years, 9 months
JBoss Rich Faces SVN: r7484 - in trunk/ui/inplaceInput: src/main/resources/org/richfaces/renderkit/html/scripts and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-03-31 12:02:01 -0400 (Mon, 31 Mar 2008)
New Revision: 7484
Modified:
trunk/ui/inplaceInput/pom.xml
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx
Log:
http://jira.jboss.com/jira/browse/RF-2884
Modified: trunk/ui/inplaceInput/pom.xml
===================================================================
--- trunk/ui/inplaceInput/pom.xml 2008-03-31 15:58:25 UTC (rev 7483)
+++ trunk/ui/inplaceInput/pom.xml 2008-03-31 16:02:01 UTC (rev 7484)
@@ -52,6 +52,11 @@
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<version>3.2.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>combobox</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
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-03-31 15:58:25 UTC (rev 7483)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-03-31 16:02:01 UTC (rev 7484)
@@ -29,6 +29,8 @@
this.editEvent = this.attributes.editEvent.substring(2,this.attributes.editEvent.length);
+ this.tempValueKeeper.style.top = Richfaces.getBorderWidth(this.tempValueKeeper, "t") + "px";
+
this.initHandlers();
this.initEvents();
this["rich:destructor"] = "destroy";
Modified: trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx
===================================================================
--- trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-03-31 15:58:25 UTC (rev 7483)
+++ trunk/ui/inplaceInput/src/main/templates/inplaceinput.jspx 2008-03-31 16:02:01 UTC (rev 7484)
@@ -14,6 +14,7 @@
<h:styles>css/inplaceinput.xcss</h:styles>
<h:scripts>
new org.ajax4jsf.javascript.PrototypeScript(),
+ scripts/comboboxUtils.js,
scripts/inplaceinput.js,
scripts/utils.js
</h:scripts>
16 years, 9 months
JBoss Rich Faces SVN: r7483 - trunk/ui/datascroller/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-03-31 11:58:25 -0400 (Mon, 31 Mar 2008)
New Revision: 7483
Modified:
trunk/ui/datascroller/src/main/config/component/datascroller.xml
Log:
http://jira.jboss.com/jira/browse/RF-2880
Modified: trunk/ui/datascroller/src/main/config/component/datascroller.xml
===================================================================
--- trunk/ui/datascroller/src/main/config/component/datascroller.xml 2008-03-31 15:49:30 UTC (rev 7482)
+++ trunk/ui/datascroller/src/main/config/component/datascroller.xml 2008-03-31 15:58:25 UTC (rev 7483)
@@ -274,7 +274,6 @@
<property hidden="true" existintag="false" exist="false" >
<name>firstRow</name>
<classname>java.lang.Object</classname>
- </property>
</property>
</component>
16 years, 9 months
JBoss Rich Faces SVN: r7482 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: status/examples and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-03-31 11:49:30 -0400 (Mon, 31 Mar 2008)
New Revision: 7482
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/progressBar/examples/polling.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/status/examples/cleaner.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/tooltipUsage.xhtml
Log:
minor demosite fixes
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/progressBar/examples/polling.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/progressBar/examples/polling.xhtml 2008-03-31 15:24:00 UTC (rev 7481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/progressBar/examples/polling.xhtml 2008-03-31 15:49:30 UTC (rev 7482)
@@ -7,11 +7,6 @@
<h:form>
<a4j:outputPanel id="progressPanel">
- <br />
- <a4j:commandButton action="#{progressBarBean.startProcess}"
- value="startProcess" reRender="progressPanel"
- rendered="#{progressBarBean.buttonRendered}"
- style="margin: 9px 0px 5px;" />
<rich:progressBar value="#{progressBarBean.currentValue}"
interval="2000" label="#{progressBarBean.currentValue} %"
enabled="#{progressBarBean.enabled}" minValue="-1" maxValue="100"
@@ -19,10 +14,18 @@
<f:facet name="initial">
<br />
<h:outputText value="Process doesn't started yet" />
+ <a4j:commandButton action="#{progressBarBean.startProcess}"
+ value="Start Process" reRender="progressPanel"
+ rendered="#{progressBarBean.buttonRendered}"
+ style="margin: 9px 0px 5px;" />
</f:facet>
<f:facet name="complete">
<br />
<h:outputText value="Process Done" />
+ <a4j:commandButton action="#{progressBarBean.startProcess}"
+ value="Restart Process" reRender="progressPanel"
+ rendered="#{progressBarBean.buttonRendered}"
+ style="margin: 9px 0px 5px;" />
</f:facet>
</rich:progressBar>
</a4j:outputPanel>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/status/examples/cleaner.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/status/examples/cleaner.xhtml 2008-03-31 15:24:00 UTC (rev 7481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/status/examples/cleaner.xhtml 2008-03-31 15:49:30 UTC (rev 7482)
@@ -1,47 +1,47 @@
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:a4j="http://richfaces.org/a4j"
- xmlns:rich="http://richfaces.org/rich">
-
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://richfaces.org/rich">
+
<a4j:region id="extr">
<h:form>
<h:outputText value="Status:" />
- <a4j:status id="commonstatus" startText="In Progress...." stopText=""/>
+ <a4j:status id="commonstatus" startText="In Progress...." stopText="" />
- <h:panelGrid columns="2">
- <h:outputText value="Name"/>
- <h:inputText id="name" value="#{userBean.name}">
- <a4j:support event="onkeyup" reRender="out" />
- </h:inputText>
+ <a4j:region id="intr">
+ <h:panelGrid columns="2">
+ <h:outputText value="Name" />
+ <h:inputText id="name" value="#{userBean.name}">
+ <a4j:support event="onkeyup" reRender="out" status="commonstatus" />
+ </h:inputText>
- <h:outputText value="Job"/>
- <a4j:region id="intr">
+ <h:outputText value="Job" />
<h:inputText id="job" value="#{userBean.job}">
- <a4j:support event="onkeyup" reRender="out" status="commonstatus"/>
+ <a4j:support event="onkeyup" reRender="out" status="commonstatus" />
</h:inputText>
- </a4j:region>
- <h:panelGroup />
+ <h:panelGroup />
-
-
- </h:panelGrid>
+ </h:panelGrid>
+ </a4j:region>
<a4j:region>
<br />
- <rich:spacer height="5"/>
- <b><h:outputText id="out" value="Name: #{userBean.name}, Job: #{userBean.job}" /></b>
+ <rich:spacer height="5" />
+ <b><h:outputText id="out"
+ value="Name: #{userBean.name}, Job: #{userBean.job}" /></b>
<br />
- <rich:spacer height="5"/>
+ <rich:spacer height="5" />
<br />
- <a4j:commandButton ajaxSingle="true" value="Clean Up Form" reRender="name, job, out" status="commonstatus">
- <a4j:actionparam name="n" value="" assignTo="#{userBean.name}" />
- <a4j:actionparam name="j" value="" assignTo="#{userBean.job}" />
+ <a4j:commandButton ajaxSingle="true" value="Clean Up Form"
+ reRender="name, job, out" status="commonstatus">
+ <a4j:actionparam name="n" value="" assignTo="#{userBean.name}" />
+ <a4j:actionparam name="j" value="" assignTo="#{userBean.job}" />
</a4j:commandButton>
</a4j:region>
</h:form>
</a4j:region>
- <br />
+ <br />
</ui:composition>
\ No newline at end of file
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/tooltipUsage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/tooltipUsage.xhtml 2008-03-31 15:24:00 UTC (rev 7481)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/toolTip/examples/tooltipUsage.xhtml 2008-03-31 15:49:30 UTC (rev 7482)
@@ -27,17 +27,21 @@
<h:panelGrid columns="2">
<rich:panel id="sample1" styleClass="tooltip-text">
+ <p>
+ Here you can see <b>default client-side</b> tool-tip
+ </p>
<rich:toolTip>
<span style="white-space:nowrap">
This tool-tip content was <strong>pre-rendered</strong> to the page.<br/>
The look of this tool-tip is 100% defined by skin.
</span>
</rich:toolTip>
+ </rich:panel>
+ <rich:panel id="sample2" styleClass="tooltip-text">
<p>
- Here you can see <b>default client-side</b> tool-tip
+ This tool-tip will <b>follow mouse</b>. Also this tool-tip has a <b>delay 0.5 sec</b>,
+ so be patient!
</p>
- </rich:panel>
- <rich:panel id="sample2" styleClass="tooltip-text">
<rich:toolTip followMouse="true" direction="top-right" showDelay="500" styleClass="tooltip">
<span style="white-space:nowrap">
This tool-tip content also <strong>pre-rendered</strong> to the page.<br/>
@@ -45,13 +49,12 @@
by styleClass attribute.
</span>
</rich:toolTip>
- <p>
- This tool-tip will <b>follow mouse</b>. Also this tool-tip has a <b>delay 0.5 sec</b>,
- so be patient!
- </p>
</rich:panel>
<h:form>
<rich:panel id="sample3" styleClass="tooltip-text">
+ <p>
+ This tool-tip rendered on server <b>in separate request</b>.
+ </p>
<rich:toolTip direction="top-right" mode="ajax" styleClass="tooltip" layout="block">
<f:facet name="defaultContent">
<strong>Wait...</strong>
@@ -63,13 +66,13 @@
<h:outputText value="#{toolTipData.tooltipCounter}" styleClass="tooltipData" />
</h:panelGrid>
</rich:toolTip>
- <p>
- This tool-tip rendered on server <b>in separate request</b>.
- </p>
</rich:panel>
</h:form>
<h:form>
<rich:panel id="sample4" styleClass="tooltip-text">
+ <p>
+ This tool-tip will be <b>activated on mouse click</b>. It also has a <b>bottom-left</b> position.
+ </p>
<rich:toolTip showEvent="onclick" direction="bottom-left" mode="ajax" styleClass="tooltip" layout="block">
<f:facet name="defaultContent">
<strong>Wait...</strong>
@@ -80,9 +83,6 @@
<h:outputText value="#{toolTipData.tooltipCounter}" styleClass="tooltipData" />
</h:panelGrid>
</rich:toolTip>
- <p>
- This tool-tip will be <b>activated on mouse click</b>. It also has a <b>bottom-left</b> position.
- </p>
</rich:panel>
</h:form>
</h:panelGrid>
16 years, 9 months
JBoss Rich Faces SVN: r7481 - in trunk: ui/combobox/src/main/config/component and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-03-31 11:24:00 -0400 (Mon, 31 Mar 2008)
New Revision: 7481
Modified:
trunk/samples/tooltip-sample/src/main/webapp/pages/index.jsp
trunk/ui/combobox/src/main/config/component/combobox.xml
trunk/ui/datascroller/src/main/config/component/datascroller.xml
trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml
trunk/ui/tooltip/src/main/config/component/toolTip.xml
trunk/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java
Log:
http://jira.jboss.com/jira/browse/RF-2880
Modified: trunk/samples/tooltip-sample/src/main/webapp/pages/index.jsp
===================================================================
--- trunk/samples/tooltip-sample/src/main/webapp/pages/index.jsp 2008-03-31 15:18:44 UTC (rev 7480)
+++ trunk/samples/tooltip-sample/src/main/webapp/pages/index.jsp 2008-03-31 15:24:00 UTC (rev 7481)
@@ -68,7 +68,15 @@
</div>
</f:verbatim>
<h:commandLink value="Simple Link" id="link">
- <rich:toolTip id="toolTipForLink" followMouse="false" direction="top-right" mode="ajax" value="#{bean.toolTipContent}" horizontalOffset="5" verticalOffset="5" layout="block">
+ <rich:toolTip id="toolTipForLink"
+ followMouse="false"
+ direction="top-right"
+ mode="ajax"
+ value="#{bean.toolTipContent}"
+ horizontalOffset="5"
+ verticalOffset="5"
+ layout="block"
+ showEvent="oncontextmenu" >
<f:facet name="defaultContent"><f:verbatim>DEFAULT LINK CONTENT</f:verbatim>
</f:facet>
<h:outputText id="outText" value="#{bean.toolTipContent}"></h:outputText>
@@ -116,7 +124,7 @@
<f:verbatim><br /></f:verbatim>
<h:inputText id="input1">
- <rich:toolTip event="focus" direction="top-right" horizontalOffset="20" verticalOffset="10">
+ <rich:toolTip showEvent="focus" direction="top-right" horizontalOffset="20" verticalOffset="10">
<h:outputText value="Tooltip" />
</rich:toolTip>
</h:inputText>
@@ -124,7 +132,7 @@
<f:verbatim><br /></f:verbatim>
<h:inputText id="input2">
- <rich:toolTip event="onfocus" direction="top-right" horizontalOffset="20" verticalOffset="10">
+ <rich:toolTip showEvent="onfocus" direction="top-right" horizontalOffset="20" verticalOffset="10">
<h:outputText value="Tooltip 2" />
</rich:toolTip>
</h:inputText>
Modified: trunk/ui/combobox/src/main/config/component/combobox.xml
===================================================================
--- trunk/ui/combobox/src/main/config/component/combobox.xml 2008-03-31 15:18:44 UTC (rev 7480)
+++ trunk/ui/combobox/src/main/config/component/combobox.xml 2008-03-31 15:24:00 UTC (rev 7481)
@@ -263,14 +263,20 @@
replacing any message that comes from the validator
</description>
</property>
-
-
-
&html_input_attributes;
&html_input_events;
&html_events;
- &ui_input_attributes;
+ &ui_input_attributes;
+
+ <property hidden="true" existintag="false" exist="false" >
+ <name>localValueSet</name>
+ <classname>java.lang.Object</classname>
+ </property>
+ <property hidden="true" existintag="false" exist="false" >
+ <name>valid</name>
+ <classname>java.lang.Object</classname>
+ </property>
</properties>
</component>
</components>
Modified: trunk/ui/datascroller/src/main/config/component/datascroller.xml
===================================================================
--- trunk/ui/datascroller/src/main/config/component/datascroller.xml 2008-03-31 15:18:44 UTC (rev 7480)
+++ trunk/ui/datascroller/src/main/config/component/datascroller.xml 2008-03-31 15:24:00 UTC (rev 7481)
@@ -267,8 +267,14 @@
<property>
<name>onpagechange</name>
- <classname>java.lang.String</classname>
+ <classname>java.lang.String</classname>
<description>JavaScript handler for call after the page is changed</description>
+ </property>
+
+ <property hidden="true" existintag="false" exist="false" >
+ <name>firstRow</name>
+ <classname>java.lang.Object</classname>
+ </property>
</property>
</component>
Modified: trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml
===================================================================
--- trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml 2008-03-31 15:18:44 UTC (rev 7480)
+++ trunk/ui/inplaceSelect/src/main/config/component/inplaceselect.xml 2008-03-31 15:24:00 UTC (rev 7481)
@@ -216,7 +216,16 @@
</property>
&html_events;
&ui_component_attributes;
- &ui_input_attributes;
+ &ui_input_attributes;
+
+ <property hidden="true" existintag="false" exist="false" >
+ <name>localValueSet</name>
+ <classname>java.lang.Object</classname>
+ </property>
+ <property hidden="true" existintag="false" exist="false" >
+ <name>valid</name>
+ <classname>java.lang.Object</classname>
+ </property>
</properties>
</component>
Modified: trunk/ui/tooltip/src/main/config/component/toolTip.xml
===================================================================
--- trunk/ui/tooltip/src/main/config/component/toolTip.xml 2008-03-31 15:18:44 UTC (rev 7480)
+++ trunk/ui/tooltip/src/main/config/component/toolTip.xml 2008-03-31 15:24:00 UTC (rev 7481)
@@ -197,6 +197,11 @@
</description>
<defaultvalue>true</defaultvalue>
</property>
+
+ <property hidden="true" existintag="false" exist="false" >
+ <name>event</name>
+ <classname>java.lang.Object</classname>
+ </property>
</component>
<renderer generate="true">
<template>org/richfaces/htmltooltipblock.jspx</template>
Modified: trunk/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java
===================================================================
--- trunk/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java 2008-03-31 15:18:44 UTC (rev 7480)
+++ trunk/ui/tooltip/src/main/java/org/richfaces/component/UIToolTip.java 2008-03-31 15:24:00 UTC (rev 7481)
@@ -25,10 +25,6 @@
public abstract void setLayout(String layout);
- public abstract String getEvent();
-
- public abstract void setEvent(String event);
-
public abstract String getMode();
public abstract void setMode(String mode);
16 years, 9 months
JBoss Rich Faces SVN: r7480 - trunk/test-applications/jsp/src/main/webapp/PickList.
by richfaces-svn-commits@lists.jboss.org
Author: viktor_volkov
Date: 2008-03-31 11:18:44 -0400 (Mon, 31 Mar 2008)
New Revision: 7480
Modified:
trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp
Log:
moveControlsVerticalAlign="#{pickList.moveControlsVerticalAlign}"
Modified: trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp 2008-03-31 15:18:11 UTC (rev 7479)
+++ trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp 2008-03-31 15:18:44 UTC (rev 7480)
@@ -3,19 +3,32 @@
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<f:subview id="pickListSubviewID">
- <rich:pickList id="pickListID" value="#{pickList.value}" showButtonsLabel="#{pickList.showButtonLabels}" valueChangeListener="#{pickList.valueChangeListener}"
- controlClass="#{style.controlClass}" listClass="#{style.listClass}" style="#{style.style}" styleClass="#{style.styleClass}"
- copyAllControlLabel="#{pickList.copyAllControlLabel}" copyControlLabel="#{pickList.copyControlLabel}"
- disabled="#{pickList.copyControlLabel}" dir="#{pickList.dir}" immediate="#{pickList.immediate}"
- listsHeight="#{pickList.listsHeight}" moveControlsVerticalAlign="#{pickList.removeAllControlLabel}"
- removeAllControlLabel="#{pickList.removeAllControlLabel}" removeControlLabel="#{pickList.removeControlLabel}"
- rendered="#{pickList.rendered}" sourceListWidth="#{pickList.sourceListWidth}" title="#{pickList.title}"
- switchByClick="#{pickList.switchByClick}" targetListWidth="#{pickList.targetListWidth}" size="#{pickList.size}"
- required="#{pickList.required}" requiredMessage="#{pickList.requiredMessage}"
- onclick="#{event.onclick}" onblur="#{event.onblur}" onchange="#{event.onchange}" ondblclick="#{event.ondblclick}"
- onfocus="#{event.onfocus}" onkeydown="#{event.onkeydown}" onkeypress="#{event.onkeypress}" onkeyup="#{event.onkeyup}"
- onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
- onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}">
+ <rich:pickList id="pickListID" value="#{pickList.value}"
+ showButtonsLabel="#{pickList.showButtonLabels}"
+ valueChangeListener="#{pickList.valueChangeListener}"
+ controlClass="#{style.controlClass}" listClass="#{style.listClass}"
+ style="#{style.style}" styleClass="#{style.styleClass}"
+ copyAllControlLabel="#{pickList.copyAllControlLabel}"
+ copyControlLabel="#{pickList.copyControlLabel}"
+ disabled="#{pickList.copyControlLabel}" dir="#{pickList.dir}"
+ immediate="#{pickList.immediate}"
+ listsHeight="#{pickList.listsHeight}"
+ moveControlsVerticalAlign="#{pickList.moveControlsVerticalAlign}"
+ removeAllControlLabel="#{pickList.removeAllControlLabel}"
+ removeControlLabel="#{pickList.removeControlLabel}"
+ rendered="#{pickList.rendered}"
+ sourceListWidth="#{pickList.sourceListWidth}"
+ title="#{pickList.title}" switchByClick="#{pickList.switchByClick}"
+ targetListWidth="#{pickList.targetListWidth}" size="#{pickList.size}"
+ required="#{pickList.required}"
+ requiredMessage="#{pickList.requiredMessage}"
+ onclick="#{event.onclick}" onblur="#{event.onblur}"
+ onchange="#{event.onchange}" ondblclick="#{event.ondblclick}"
+ onfocus="#{event.onfocus}" onkeydown="#{event.onkeydown}"
+ onkeypress="#{event.onkeypress}" onkeyup="#{event.onkeyup}"
+ onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}"
+ onmouseout="#{event.onmouseout}" onmouseover="#{event.onmouseover}"
+ onmouseup="#{event.onmouseup}">
<f:selectItems value="#{pickList.data}" />
</rich:pickList>
<h:panelGrid columns="2">
16 years, 9 months
JBoss Rich Faces SVN: r7479 - trunk/test-applications/facelets/src/main/webapp/PickList.
by richfaces-svn-commits@lists.jboss.org
Author: viktor_volkov
Date: 2008-03-31 11:18:11 -0400 (Mon, 31 Mar 2008)
New Revision: 7479
Modified:
trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml
Log:
moveControlsVerticalAlign="#{pickList.moveControlsVerticalAlign}"
Modified: trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml 2008-03-31 15:16:29 UTC (rev 7478)
+++ trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml 2008-03-31 15:18:11 UTC (rev 7479)
@@ -1,18 +1,35 @@
-<f:subview xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:a4j="http://richfaces.org/a4j" xmlns:h="http://java.sun.com/jsf/html" xmlns:rich="http://richfaces.org/rich" id="pickListSubviewID">
+<f:subview xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:rich="http://richfaces.org/rich" id="pickListSubviewID">
- <rich:pickList id="pickListID" value="#{pickList.value}" showButtonsLabel="#{pickList.showButtonLabels}" valueChangeListener="#{pickList.valueChangeListener}"
- controlClass="#{style.controlClass}" listClass="#{style.listClass}" style="#{style.style}" styleClass="#{style.styleClass}"
- copyAllControlLabel="#{pickList.copyAllControlLabel}" copyControlLabel="#{pickList.copyControlLabel}"
- disabled="#{pickList.copyControlLabel}" dir="#{pickList.dir}" immediate="#{pickList.immediate}"
- listsHeight="#{pickList.listsHeight}" moveControlsVerticalAlign="#{pickList.removeAllControlLabel}"
- removeAllControlLabel="#{pickList.removeAllControlLabel}" removeControlLabel="#{pickList.removeControlLabel}"
- rendered="#{pickList.rendered}" sourceListWidth="#{pickList.sourceListWidth}" title="#{pickList.title}"
- switchByClick="#{pickList.switchByClick}" targetListWidth="#{pickList.targetListWidth}" size="#{pickList.size}"
- required="#{pickList.required}" requiredMessage="#{pickList.requiredMessage}"
- onclick="#{event.onclick}" onblur="#{event.onblur}" onchange="#{event.onchange}" ondblclick="#{event.ondblclick}"
- onfocus="#{event.onfocus}" onkeydown="#{event.onkeydown}" onkeypress="#{event.onkeypress}" onkeyup="#{event.onkeyup}"
- onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
- onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}">
+ <rich:pickList id="pickListID" value="#{pickList.value}"
+ showButtonsLabel="#{pickList.showButtonLabels}"
+ valueChangeListener="#{pickList.valueChangeListener}"
+ controlClass="#{style.controlClass}" listClass="#{style.listClass}"
+ style="#{style.style}" styleClass="#{style.styleClass}"
+ copyAllControlLabel="#{pickList.copyAllControlLabel}"
+ copyControlLabel="#{pickList.copyControlLabel}"
+ disabled="#{pickList.copyControlLabel}" dir="#{pickList.dir}"
+ immediate="#{pickList.immediate}"
+ listsHeight="#{pickList.listsHeight}"
+ moveControlsVerticalAlign="#{pickList.moveControlsVerticalAlign}"
+ removeAllControlLabel="#{pickList.removeAllControlLabel}"
+ removeControlLabel="#{pickList.removeControlLabel}"
+ rendered="#{pickList.rendered}"
+ sourceListWidth="#{pickList.sourceListWidth}"
+ title="#{pickList.title}" switchByClick="#{pickList.switchByClick}"
+ targetListWidth="#{pickList.targetListWidth}" size="#{pickList.size}"
+ required="#{pickList.required}"
+ requiredMessage="#{pickList.requiredMessage}"
+ onclick="#{event.onclick}" onblur="#{event.onblur}"
+ onchange="#{event.onchange}" ondblclick="#{event.ondblclick}"
+ onfocus="#{event.onfocus}" onkeydown="#{event.onkeydown}"
+ onkeypress="#{event.onkeypress}" onkeyup="#{event.onkeyup}"
+ onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}"
+ onmouseout="#{event.onmouseout}" onmouseover="#{event.onmouseover}"
+ onmouseup="#{event.onmouseup}">
<f:selectItem itemValue="selectItem" itemLabel="selectItem" />
<f:selectItem itemValue="selectItem 1" itemLabel="selectItem 1" />
<f:selectItem itemValue="selectItem 2" itemLabel="selectItem 2" />
16 years, 9 months