Author: mvitenkov
Date: 2008-07-10 05:51:23 -0400 (Thu, 10 Jul 2008)
New Revision: 9501
Modified:
trunk/test-applications/facelets/src/main/java/ddMenu/DDMenu.java
trunk/test-applications/facelets/src/main/java/effect/Effect.java
trunk/test-applications/facelets/src/main/java/fileUpload/FileUpload.java
trunk/test-applications/facelets/src/main/java/gmap/Gmap.java
trunk/test-applications/facelets/src/main/java/hotKey/HotKey.java
trunk/test-applications/facelets/src/main/java/inplaceInput/InplaceInput.java
trunk/test-applications/facelets/src/main/java/inplaceSelect/InplaceSelect.java
trunk/test-applications/facelets/src/main/java/inputNumberSlider/InputNumberSlider.java
trunk/test-applications/facelets/src/main/java/inputNumberSpinner/InputNumberSpinner.java
trunk/test-applications/facelets/src/main/java/insert/Insert.java
trunk/test-applications/facelets/src/main/java/jQuery/JQuery.java
trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenu.xhtml
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenuProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml
trunk/test-applications/facelets/src/main/webapp/FileUpload/FileUpload.xhtml
trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml
trunk/test-applications/facelets/src/main/webapp/Gmap/GmapProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/HotKey/HotKey.xhtml
trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInputProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/InplaceSelect/InplaceSelectProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSlider.xhtml
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSliderProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinner.xhtml
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinnerProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml
trunk/test-applications/facelets/src/main/webapp/Insert/InsertProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml
trunk/test-applications/facelets/src/main/webapp/jQuery/jQuery.xhtml
Log:
+new test
Modified: trunk/test-applications/facelets/src/main/java/ddMenu/DDMenu.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/ddMenu/DDMenu.java 2008-07-10 08:17:30
UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/ddMenu/DDMenu.java 2008-07-10 09:51:23
UTC (rev 9501)
@@ -4,6 +4,10 @@
import javax.faces.event.ActionEvent;
+import org.richfaces.component.html.HtmlDropDownMenu;
+
+import util.componentInfo.ComponentInfo;
+
public class DDMenu {
private int hideDelay;
@@ -25,7 +29,22 @@
private boolean disabled;
private boolean disabledDDM;
private boolean check;
+ private HtmlDropDownMenu htmlDDMenu = null;
+ public HtmlDropDownMenu getHtmlDDMenu() {
+ return htmlDDMenu;
+ }
+
+ public void setHtmlDDMenu(HtmlDropDownMenu htmlDDMenu) {
+ this.htmlDDMenu = htmlDDMenu;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlDDMenu);
+ return null;
+ }
+
public DDMenu() {
selectMenu = "accord";
hideDelay = 0;
Modified: trunk/test-applications/facelets/src/main/java/effect/Effect.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/effect/Effect.java 2008-07-10 08:17:30
UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/effect/Effect.java 2008-07-10 09:51:23
UTC (rev 9501)
@@ -21,11 +21,30 @@
package effect;
+import org.richfaces.component.html.HtmlEffect;
+
+import util.componentInfo.ComponentInfo;
+
public class Effect {
private double time;
private String stateName;
private boolean state;
+ private HtmlEffect htmlEffect = null;
+ public HtmlEffect getHtmlEffect() {
+ return htmlEffect;
+ }
+
+ public void setHtmlEffect(HtmlEffect htmlEffect) {
+ this.htmlEffect = htmlEffect;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlEffect);
+ return null;
+ }
+
public Effect() {
time = 1.4;
state = true;
Modified: trunk/test-applications/facelets/src/main/java/fileUpload/FileUpload.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/fileUpload/FileUpload.java 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/fileUpload/FileUpload.java 2008-07-10
09:51:23 UTC (rev 9501)
@@ -6,9 +6,12 @@
import java.util.ArrayList;
import java.io.InputStream;
+import org.richfaces.component.html.HtmlFileUpload;
import org.richfaces.event.UploadEvent;
import org.richfaces.model.UploadItem;
+import util.componentInfo.ComponentInfo;
+
public class FileUpload {
private boolean disabled;
private boolean autoclear;
@@ -21,7 +24,22 @@
private ArrayList data;
private Integer maxFilesQuantity;
private UploadItem upload;
+ private HtmlFileUpload htmlFileUpload = null;
+ public HtmlFileUpload getHtmlFileUpload() {
+ return htmlFileUpload;
+ }
+
+ public void setHtmlFileUpload(HtmlFileUpload htmlFileUpload) {
+ this.htmlFileUpload = htmlFileUpload;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlFileUpload);
+ return null;
+ }
+
public FileUpload() {
data = new ArrayList();
disabled = false;
Modified: trunk/test-applications/facelets/src/main/java/gmap/Gmap.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/gmap/Gmap.java 2008-07-10 08:17:30 UTC
(rev 9500)
+++ trunk/test-applications/facelets/src/main/java/gmap/Gmap.java 2008-07-10 09:51:23 UTC
(rev 9501)
@@ -1,5 +1,9 @@
package gmap;
+import org.richfaces.component.html.HtmlGmap;
+
+import util.componentInfo.ComponentInfo;
+
/**
* @author user
*
@@ -19,7 +23,22 @@
private String warningMessage;
private String zoom;
private boolean rendered;
+ private HtmlGmap htmlGMap = null;
+ public HtmlGmap getHtmlGMap() {
+ return htmlGMap;
+ }
+
+ public void setHtmlGMap(HtmlGmap htmlGMap) {
+ this.htmlGMap = htmlGMap;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlGMap);
+ return null;
+ }
+
public Gmap() {
zoom = "17";
mapType ="G_NORMAL_MAP";
Modified: trunk/test-applications/facelets/src/main/java/hotKey/HotKey.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/hotKey/HotKey.java 2008-07-10 08:17:30
UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/hotKey/HotKey.java 2008-07-10 09:51:23
UTC (rev 9501)
@@ -10,6 +10,8 @@
import org.richfaces.component.html.HtmlHotKey;
+import util.componentInfo.ComponentInfo;
+
/**
* @author AYanul
*
@@ -38,6 +40,13 @@
public void setBinding(HtmlHotKey binding) {
this.binding = binding;
}
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(binding);
+ return null;
+ }
+
/**
* @return the handler
*/
Modified: trunk/test-applications/facelets/src/main/java/inplaceInput/InplaceInput.java
===================================================================
---
trunk/test-applications/facelets/src/main/java/inplaceInput/InplaceInput.java 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/java/inplaceInput/InplaceInput.java 2008-07-10
09:51:23 UTC (rev 9501)
@@ -6,6 +6,8 @@
import org.richfaces.component.html.HtmlInplaceInput;
+import util.componentInfo.ComponentInfo;
+
public class InplaceInput {
private String inputWidth;
private String maxInputWidth;
@@ -35,6 +37,12 @@
this.myInplaceInput = myInplaceInput;
}
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(myInplaceInput);
+ return null;
+ }
+
public String getBindLabel() {
return bindLabel;
}
Modified: trunk/test-applications/facelets/src/main/java/inplaceSelect/InplaceSelect.java
===================================================================
---
trunk/test-applications/facelets/src/main/java/inplaceSelect/InplaceSelect.java 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/java/inplaceSelect/InplaceSelect.java 2008-07-10
09:51:23 UTC (rev 9501)
@@ -2,6 +2,9 @@
import javax.faces.event.ValueChangeEvent;
import org.richfaces.component.html.HtmlInplaceSelect;
+
+import util.componentInfo.ComponentInfo;
+
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
@@ -68,6 +71,12 @@
return myInplaceSelect;
}
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(myInplaceSelect);
+ return null;
+ }
+
public void setbindLabel(String bindLabel){
this.bindLabel = bindLabel;
}
Modified:
trunk/test-applications/facelets/src/main/java/inputNumberSlider/InputNumberSlider.java
===================================================================
---
trunk/test-applications/facelets/src/main/java/inputNumberSlider/InputNumberSlider.java 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/java/inputNumberSlider/InputNumberSlider.java 2008-07-10
09:51:23 UTC (rev 9501)
@@ -2,6 +2,10 @@
import javax.faces.event.ValueChangeEvent;
+import org.richfaces.component.html.HtmlInputNumberSlider;
+
+import util.componentInfo.ComponentInfo;
+
public class InputNumberSlider {
private int inputSize;
@@ -28,7 +32,22 @@
private boolean rendered;
private boolean enableManualInput;
private boolean showBoundaryValues;
+ private HtmlInputNumberSlider htmlINS = null;
+ public HtmlInputNumberSlider getHtmlINS() {
+ return htmlINS;
+ }
+
+ public void setHtmlINS(HtmlInputNumberSlider htmlINS) {
+ this.htmlINS = htmlINS;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlINS);
+ return null;
+ }
+
public InputNumberSlider() {
immediate = false;
rendered = false;
Modified:
trunk/test-applications/facelets/src/main/java/inputNumberSpinner/InputNumberSpinner.java
===================================================================
---
trunk/test-applications/facelets/src/main/java/inputNumberSpinner/InputNumberSpinner.java 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/java/inputNumberSpinner/InputNumberSpinner.java 2008-07-10
09:51:23 UTC (rev 9501)
@@ -1,5 +1,9 @@
package inputNumberSpinner;
+import org.richfaces.component.html.HtmlInputNumberSpinner;
+
+import util.componentInfo.ComponentInfo;
+
public class InputNumberSpinner {
// private String size;
@@ -17,7 +21,22 @@
private boolean disabled;
private boolean manualInput;
private boolean rendered;
+ private HtmlInputNumberSpinner htmlINSpinner = null;
+ public HtmlInputNumberSpinner getHtmlINSpinner() {
+ return htmlINSpinner;
+ }
+
+ public void setHtmlINSpinner(HtmlInputNumberSpinner htmlINSpinner) {
+ this.htmlINSpinner = htmlINSpinner;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlINSpinner);
+ return null;
+ }
+
public InputNumberSpinner() {
// size= "200";
inputSize = 2;
Modified: trunk/test-applications/facelets/src/main/java/insert/Insert.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/insert/Insert.java 2008-07-10 08:17:30
UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/insert/Insert.java 2008-07-10 09:51:23
UTC (rev 9501)
@@ -1,10 +1,29 @@
package insert;
+import org.richfaces.ui.component.html.HtmlInsert;
+
+import util.componentInfo.ComponentInfo;
+
public class Insert {
private String highlight;
private String src;
private boolean rendered;
+ private HtmlInsert htmlInsert = null;
+ public HtmlInsert getHtmlInsert() {
+ return htmlInsert;
+ }
+
+ public void setHtmlInsert(HtmlInsert htmlInsert) {
+ this.htmlInsert = htmlInsert;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlInsert);
+ return null;
+ }
+
public Insert() {
src = "/Insert/src/test.html";
rendered = true;
Modified: trunk/test-applications/facelets/src/main/java/jQuery/JQuery.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/jQuery/JQuery.java 2008-07-10 08:17:30
UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/jQuery/JQuery.java 2008-07-10 09:51:23
UTC (rev 9501)
@@ -1,5 +1,24 @@
package jQuery;
+import org.richfaces.component.html.HtmlJQuery;
+
+import util.componentInfo.ComponentInfo;
+
public class JQuery {
+ private HtmlJQuery htmlJQuery = null;
+
+ public HtmlJQuery getHtmlJQuery() {
+ return htmlJQuery;
+ }
+
+ public void setHtmlJQuery(HtmlJQuery htmlJQuery) {
+ this.htmlJQuery = htmlJQuery;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlJQuery);
+ return null;
+ }
}
Modified: trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java 2008-07-10
09:51:23 UTC (rev 9501)
@@ -6,6 +6,9 @@
import javax.faces.event.ValueChangeEvent;
+import org.richfaces.component.html.HtmlListShuttle;
+
+import util.componentInfo.ComponentInfo;
import util.data.Data;
public class ListShuttle {
@@ -38,9 +41,24 @@
private String sourceListWidth;
private String listsHeight;
private String sourceCaptionLabel;
- private String targetCaptionLabel;
+ private String targetCaptionLabel;
+ private HtmlListShuttle htmlListShuttle = null;
- public ListShuttle() {
+ public HtmlListShuttle getHtmlListShuttle() {
+ return htmlListShuttle;
+ }
+
+ public void setHtmlListShuttle(HtmlListShuttle htmlListShuttle) {
+ this.htmlListShuttle = htmlListShuttle;
+ }
+
+ public String add(){
+ ComponentInfo info = ComponentInfo.getInstance();
+ info.addField(htmlListShuttle);
+ return null;
+ }
+
+ public ListShuttle() {
this.first = 1;
this.lenght = 10;
this.showSelect = true;
Modified:
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenu.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenu.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenu.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -7,8 +7,11 @@
direction="#{dDMenu.direction}"
horizontalOffset="#{dDMenu.horizontalOffset}"
jointPoint="#{dDMenu.jointPoint}"
popupWidth="#{dDMenu.popupWidth}"
showDelay="#{dDMenu.showDelay}" rendered="#{dDMenu.rendered}"
verticalOffset="#{dDMenu.verticalOffset}"
styleClass="#{style.styleClass}" style="#{style.style}"
event="#{dDMenu.event}"
- oncollapse="#{event.oncollapse}" onexpand="#{event.onexpand}"
ongroupactivate="#{event.ongroupactivate}"
onitemselect="#{event.onitemselect}"
onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
onmouseover="#{event.onmouseover}">
- <rich:menuItem icon="#{dDMenu.icon}"
onbeforedomupdate="#{event.onbeforedomupdate}"
onclick="#{event.onclick}" oncomplete="#{event.oncomplete}"
onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}"
onmouseout="#{event.onmouseout}" onmouseover="#{event.onmouseover}"
onmouseup="#{event.onmouseup}" onselect="#{event.onselect}">
+ oncollapse="#{event.oncollapse}" onexpand="#{event.onexpand}"
ongroupactivate="#{event.ongroupactivate}"
onitemselect="#{event.onitemselect}"
+ onmousemove="#{event.onmousemove}"
onmouseout="#{event.onmouseout}" onmouseover="#{event.onmouseover}"
binding="#{dDMenu.htmlDDMenu}">
+
+ <rich:menuItem icon="#{dDMenu.icon}"
onbeforedomupdate="#{event.onbeforedomupdate}"
onclick="#{event.onclick}" oncomplete="#{event.oncomplete}"
onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}"
onmouseout="#{event.onmouseout}"
+ onmouseover="#{event.onmouseover}"
onmouseup="#{event.onmouseup}" onselect="#{event.onselect}">
<h:outputText value="Item1(test events)" />
</rich:menuItem>
<rich:menuSeparator />
Modified:
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenuProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenuProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/DropDownMenu/DropDownMenuProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -11,7 +11,7 @@
margin-right: 2px;
}
</style>
- <h:form>
+
<rich:toolBar itemSeparator="line">
<rich:toolBarGroup itemSeparator="none">
<rich:dropDownMenu>
@@ -27,7 +27,8 @@
</rich:dropDownMenu>
</rich:toolBarGroup>
</rich:toolBar>
- </h:form>
+
+ <h:commandButton action="#{dDMenu.add}" value="add test" />
<h:panelGrid columns="2">
<h:outputText value="HideDelay (ms):" />
<h:inputText value="#{dDMenu.hideDelay}">
Modified: trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/webapp/Effect/Effect.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -93,7 +93,7 @@
<h:panelGroup id="form_1b_ID">
<h:inputText value="onmouse and onclick">
<rich:effect event="onclick" type="Fold"
id="effectID"
- params="duration:0.5,from:0.4,to:1.0" />
+ params="duration:0.5,from:0.4,to:1.0"
binding="#{effect.htmlEffect}"/>
<rich:effect event="onmouseout" type="Highlight"
params="duration:0.5,from:1.0,to:0.4" />
</h:inputText>
@@ -300,6 +300,7 @@
<rich:effect for="frm5" name="showFrm5" type="Appear"
/>
<br />
+ <h:commandButton action="#{effect.add}" value="add test" />
<br />
<div style="FONT-WEIGHT: bold;">rich:findComponent</div>
<h:panelGrid columns="2">
Modified: trunk/test-applications/facelets/src/main/webapp/FileUpload/FileUpload.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/FileUpload/FileUpload.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/FileUpload/FileUpload.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -11,11 +11,12 @@
listHeight="#{fileUpload.listHeight}"
listWidth="#{fileUpload.listHeight}"
uploadData="#{fileUpload.data}"
maxFilesQuantity="#{fileUpload.maxFilesQuantity}"
- fileUploadListener="#{fileUpload.fileUploadListener}">
+ fileUploadListener="#{fileUpload.fileUploadListener}"
binding="#{fileUpload.htmlFileUpload}">
<f:facet name="label">
<h:outputText value="{_KB}KB from {KB}KB uploaded :[ {mm}:{ss}
]"></h:outputText>
</f:facet>
</rich:fileUpload>
+ <h:commandButton action="#{fileUpload.add}" value="add test"
/>
<h:panelGrid columns="2">
<h:outputText value="acceptedTypes"></h:outputText>
<h:inputText value="#{fileUpload.acceptedTypes}"
onchange="submit();"></h:inputText>
Modified: trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml 2008-07-10 08:17:30
UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/webapp/Gmap/Gmap.xhtml 2008-07-10 09:51:23
UTC (rev 9501)
@@ -6,7 +6,7 @@
gmapVar="map" oninit="alert('init ...')"
showGLargeMapControl="#{gmap.showGLargeMapControl}"
showGMapTypeControl="#{gmap.showGMapTypeControl}"
showGScaleControl="#{gmap.showGScaleControl}"
onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
onkeydown="#{event.onkeydown}" onkeypress="#{event.onkeypress}"
onkeyup="#{event.onkeyup}" onmousedown="#{event.onmousedown}"
onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}"
onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}"
- gmapKey="ABQIAAAAxU6W9QEhFLMNdc3ATIu-VxT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRkrpOGzxH8_ud3inE9pG1845-FCA"
style="#{style.style}" styleClass="#{style.styleClass}" />
+ gmapKey="ABQIAAAAxU6W9QEhFLMNdc3ATIu-VxT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRkrpOGzxH8_ud3inE9pG1845-FCA"
style="#{style.style}" styleClass="#{style.styleClass}"
binding="#{gmap.htmlGMap}" />
<h:panelGroup>
<f:verbatim>
Modified: trunk/test-applications/facelets/src/main/webapp/Gmap/GmapProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Gmap/GmapProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/webapp/Gmap/GmapProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -4,6 +4,7 @@
xmlns:a4j="http://richfaces.org/a4j"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
id="GmapPropertySubviewID">
+ <h:commandButton action="#{gmap.add}" value="add test" />
<h:panelGrid columns="2">
<h:outputText value="mapType"></h:outputText>
<h:selectOneMenu value="#{gmap.mapType}"
onchange="submit();">
Modified: trunk/test-applications/facelets/src/main/webapp/HotKey/HotKey.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/HotKey/HotKey.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/webapp/HotKey/HotKey.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -10,7 +10,7 @@
<rich:hotKey id="hotKeyID" binding="#{hotKey.binding}"
disableInInput="#{hotKey.disableInInput}"
handler="#{hotKey.handler}"
key="#{hotKey.key}" rendered="#{hotKey.rendered}"
- selector="#{hotKey.selector}" timing="#{hotKey.timing}" />
+ selector="#{hotKey.selector}" timing="#{hotKey.timing}"/>
<h:panelGrid columns="2">
<h:outputText value="type"></h:outputText>
@@ -106,6 +106,7 @@
</rich:componentControl>
</h:panelGrid>
<br />
+ <h:commandButton action="#{hotKey.add}" value="add test" />
<br />
<div style="FONT-WEIGHT: bold;">rich:findComponent</div>
<h:panelGrid columns="2">
Modified:
trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInputProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInputProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/InplaceInput/InplaceInputProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -4,7 +4,7 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
id="inplaceInputPropertySubviewID">
-
+ <h:commandButton action="#{inplaceInput.add}" value="add test"
/>
<h:panelGrid columns="2">
<h:outputText value="value"></h:outputText>
<h:outputText id="inplaceInputValueID"
value="#{inplaceInput.value}"
Modified:
trunk/test-applications/facelets/src/main/webapp/InplaceSelect/InplaceSelectProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/InplaceSelect/InplaceSelectProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/InplaceSelect/InplaceSelectProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -4,7 +4,7 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
id="inplaceSelectPropertySubviewID">
-
+ <h:commandButton action="#{inplaceSelect.add}" value="add test"
/>
<h:panelGrid columns="2">
<h:outputText value="value"></h:outputText>
<h:outputText value="#{inplaceSelect.value}"></h:outputText>
Modified:
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSlider.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSlider.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSlider.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -12,7 +12,11 @@
barClass="#{style.barClass}" tipClass="#{style.barClass}"
inputClass="#{style.inputClass}"
handleClass="#{style.handleStyle}" styleClass="#{style.tipStyle}"
maxlength="#{inputNumberSlider.maxlength}"
- onblur="#{event.onblur}" onchange="#{event.onchange}"
onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
onerror="#{event.onerror}" 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}"
onselect="#{event.onselect}" onslide="#{event.onslide}">
+ onblur="#{event.onblur}" onchange="#{event.onchange}"
onclick="#{event.onclick}" ondblclick="#{event.ondblclick}"
+ onerror="#{event.onerror}" 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}"
onselect="#{event.onselect}" onslide="#{event.onslide}"
+ binding="#{inputNumberSlider.htmlINS}" >
</rich:inputNumberSlider>
<h:panelGroup>
<a4j:commandButton value="valueChangeListener (show)"
reRender="valueCLID" />
Modified:
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSliderProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSliderProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/InputNumberSlider/InputNumberSliderProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -5,6 +5,7 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
id="inputNumberSliderPropertySubviewID">
+ <h:commandButton action="#{inputNumberSlider.add}" value="add
test" />
<h:panelGrid columns="2" cellspacing="10px"
border="1">
<h:outputText value="value" />
<h:inputText value="#{inputNumberSlider.value}">
Modified:
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinner.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinner.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinner.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -18,6 +18,7 @@
onkeyup="#{event.onkeyup}"
onmousemove="#{event.onmousemove}"
onmouseout="#{event.onmouseout}"
onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}"
- ondownclick="#{event.ondownclick}"
onupclick="#{event.onupclick}"></rich:inputNumberSpinner>
+ ondownclick="#{event.ondownclick}" onupclick="#{event.onupclick}"
+ binding="#{inputNumberSpinner.htmlINSpinner}"></rich:inputNumberSpinner>
<rich:spacer height="20px"></rich:spacer>
</f:subview>
Modified:
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinnerProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinnerProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/InputNumberSpinner/InputNumberSpinnerProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -4,6 +4,7 @@
xmlns:a4j="http://richfaces.org/a4j"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
id="iNSpinnerPropertySubviewID">
+ <h:commandButton action="#{inputNumberSpinner.add}" value="add
test" />
<h:panelGrid columns="2" cellpadding="10px"
border="1">
<h:outputText value="Max: "></h:outputText>
<h:inputText value="#{inputNumberSpinner.max}">
Modified: trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/webapp/Insert/Insert.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -4,6 +4,6 @@
<rich:panel id="panelID" header="Highlight: #{insert.highlight};
File: #{insert.src}">
<rich:insert id="insertID" highlight="#{insert.highlight}"
- rendered="#{insert.rendered}"
src="#{insert.src}"></rich:insert>
+ rendered="#{insert.rendered}" src="#{insert.src}"
binding="#{insert.htmlInsert}"></rich:insert>
</rich:panel>
</f:subview>
Modified: trunk/test-applications/facelets/src/main/webapp/Insert/InsertProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/Insert/InsertProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/Insert/InsertProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -1,5 +1,6 @@
<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="InsertPropertySubviewID">
+<h:commandButton action="#{insert.add}" value="add test" />
<h:panelGrid columns="2">
<h:outputText value="Highlight:" />
<h:selectOneMenu value="#{insert.highlight}">
Modified: trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttle.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -14,7 +14,9 @@
listsHeight="#{listShuttle.listsHeight}"
sourceCaptionLabel="#{listShuttle.sourceCaptionLabel}"
targetCaptionLabel="#{listShuttle.targetCaptionLabel}"
topControlLabel="#{listShuttle.topControlLabel}"
upControlLabel="#{listShuttle.upControlLabel}"
- onmousemove="#{event.onmousemove}" onclick="#{event.onclick}"
ondblclick="#{event.ondblclick}" onmouseout="#{event.onmouseout}"
onmouseover="#{event.onmouseover}"
onorderchanged="#{event.onorderchanged}"
ontopclick="#{event.ontopclick}" onupclick="#{event.onupclick}"
ondownclick="#{event.ondownclick}"
onbottomclick="#{event.onbottomclick}">
+ onmousemove="#{event.onmousemove}" onclick="#{event.onclick}"
ondblclick="#{event.ondblclick}"
+ onmouseout="#{event.onmouseout}"
onmouseover="#{event.onmouseover}"
onorderchanged="#{event.onorderchanged}"
ontopclick="#{event.ontopclick}"
+ onupclick="#{event.onupclick}" ondownclick="#{event.ondownclick}"
onbottomclick="#{event.onbottomclick}"
binding="#{listShuttle.htmlListShuttle}">
<h:column>
<f:facet name="header">
Modified:
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml
===================================================================
---
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++
trunk/test-applications/facelets/src/main/webapp/ListShuttle/ListShuttleProperty.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -5,6 +5,7 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
id="listShuttlePropertySubviewID">
+ <h:commandButton action="#{listShuttle.add}" value="add test"
/>
<h:panelGrid columns="2">
<h:column></h:column>
<h:panelGroup>
Modified: trunk/test-applications/facelets/src/main/webapp/jQuery/jQuery.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/jQuery/jQuery.xhtml 2008-07-10
08:17:30 UTC (rev 9500)
+++ trunk/test-applications/facelets/src/main/webapp/jQuery/jQuery.xhtml 2008-07-10
09:51:23 UTC (rev 9501)
@@ -92,7 +92,7 @@
<rich:jQuery selector="li" timing="onload" id="jQid"
- query="find('ol').end().append('[li],work!')" />
+ query="find('ol').end().append('[li],work!')"
binding="#{jQuery.htmlJQuery}" />
<rich:jQuery selector="body" timing="onload"
query="addClass('body')" />
<rich:jQuery selector="tr:nth-child(odd)" timing="onload"
@@ -115,6 +115,7 @@
<rich:jQuery selector="#form\\:panelGridID #div_2_ID"
timing="onload"
query="addClass('divSize_2')" />
<br />
+ <h:commandButton action="#{jQuery.add}" value="add test" />
<br />
<div style="FONT-WEIGHT: bold;">rich:findComponent</div>
<h:panelGrid columns="2">