JBoss Rich Faces SVN: r8332 - in trunk/test-applications/facelets/src/main: webapp/DataOrderedList and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-04-29 11:32:25 -0400 (Tue, 29 Apr 2008)
New Revision: 8332
Modified:
trunk/test-applications/facelets/src/main/java/dataOrderedList/DataOrderedList.java
trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml
trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml
Log:
+binding
Modified: trunk/test-applications/facelets/src/main/java/dataOrderedList/DataOrderedList.java
===================================================================
--- trunk/test-applications/facelets/src/main/java/dataOrderedList/DataOrderedList.java 2008-04-29 15:31:37 UTC (rev 8331)
+++ trunk/test-applications/facelets/src/main/java/dataOrderedList/DataOrderedList.java 2008-04-29 15:32:25 UTC (rev 8332)
@@ -1,7 +1,9 @@
package dataOrderedList;
import java.util.ArrayList;
-
+import org.richfaces.component.html.HtmlDataOrderedList;
+import javax.faces.context.FacesContext;
+import javax.faces.event.ActionEvent;
import util.data.Data;
public class DataOrderedList
@@ -15,7 +17,30 @@
private String dir;
private int mSize;
private ArrayList defaultArr;
+ private HtmlDataOrderedList myOrderedList = null;
+ private String bindLabel;
+ public HtmlDataOrderedList getMyOrderedList() {
+ return myOrderedList;
+ }
+
+ public void setMyOrderedList(HtmlDataOrderedList myOrderedList) {
+ this.myOrderedList = myOrderedList;
+ }
+
+ public String getBindLabel() {
+ return bindLabel;
+ }
+
+ public void setBindLabel(String bindLabel) {
+ this.bindLabel = bindLabel;
+ }
+
+ public void checkBinding(ActionEvent actionEvent){
+ FacesContext context = FacesContext.getCurrentInstance();
+ bindLabel = myOrderedList.getBaseClientId(context);
+ }
+
public String getDir() {
return dir;
}
Modified: trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml 2008-04-29 15:31:37 UTC (rev 8331)
+++ trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml 2008-04-29 15:32:25 UTC (rev 8332)
@@ -3,14 +3,15 @@
<rich:dataOrderedList id="doListID" value="#{dataOrderedList.arr}" var="arr" first="#{dataOrderedList.first}"
rendered="#{dataOrderedList.rendered}" title="#{dataOrderedList.title}" type="#{dataOrderedList.type}" dir="#{dataOrderedList.dir}"
rows="#{dataOrderedList.rows}"
- columnClasses="#{style.columnClasses}" footerClass="#{style.footerClass}" headerClass="#{style.headerClass}" rowClasses="#{style.rowClasses}" style="#{style.style}" styleClass="#{style.styleClass}" >
+ columnClasses="#{style.columnClasses}" footerClass="style" headerClass="test" rowClasses="#{style.rowClasses}" style="#{style.style}" styleClass="#{style.styleClass}"
+ binding="#{dataOrderedList.myOrderedList}" >
<f:facet name="header">
- <h:outputText value="Africa(header):" />
+ <h:outputText value="HEADER" style="TEXT-DECORATION: underline;"/>
</f:facet>
<h:outputText value="#{arr.str0} " />
<h:outputLink value="http://www.jboss.com/"><f:verbatim>Link</f:verbatim></h:outputLink>
<f:facet name="footer">
- <h:outputText value="Africa(footer);" />
+ <h:outputText value="FOOTER" style="TEXT-DECORATION: underline;"/>
</f:facet>
</rich:dataOrderedList>
</f:subview>
Modified: trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml 2008-04-29 15:31:37 UTC (rev 8331)
+++ trunk/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml 2008-04-29 15:32:25 UTC (rev 8332)
@@ -38,5 +38,8 @@
<h:outputText value="rendered" />
<h:selectBooleanCheckbox value="#{dataOrderedList.rendered}" onchange="submit();"/>
+
+ <h:commandButton actionListener="#{dataOrderedList.checkBinding}" value="Binding"></h:commandButton>
+ <h:outputText value="#{dataOrderedList.bindLabel}"></h:outputText>
</h:panelGrid>
</f:subview>
\ No newline at end of file
16 years, 7 months
JBoss Rich Faces SVN: r8331 - trunk/test-applications/jsp/src/main/webapp/WEB-INF.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-04-29 11:31:37 -0400 (Tue, 29 Apr 2008)
New Revision: 8331
Modified:
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-DataTable.xml
Log:
+3 new managed bean for dataTable
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-DataTable.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-DataTable.xml 2008-04-29 15:02:32 UTC (rev 8330)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-DataTable.xml 2008-04-29 15:31:37 UTC (rev 8331)
@@ -7,4 +7,22 @@
<managed-bean-class>dataTable.DataTable</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
+
+ <managed-bean>
+ <managed-bean-name>testBean</managed-bean-name>
+ <managed-bean-class>dataTable.TestBean</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+
+ <managed-bean>
+ <managed-bean-name>table</managed-bean-name>
+ <managed-bean-class>dataTable.Table</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
+
+ <managed-bean>
+ <managed-bean-name>cell</managed-bean-name>
+ <managed-bean-class>dataTable.Cell</managed-bean-class>
+ <managed-bean-scope>session</managed-bean-scope>
+ </managed-bean>
</faces-config>
16 years, 7 months
JBoss Rich Faces SVN: r8330 - trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-04-29 11:02:32 -0400 (Tue, 29 Apr 2008)
New Revision: 8330
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
Log:
http://jira.jboss.com/jira/browse/RF-3255
Modified: trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
===================================================================
--- trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-04-29 15:02:12 UTC (rev 8329)
+++ trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-04-29 15:02:32 UTC (rev 8330)
@@ -193,14 +193,29 @@
},
deleteViewArtifacts : function () {
- var text = this.inplaceInput.childNodes[6];
+ var text;
+ // IE6 support
+ if (this.comboList.iframe) {
+ text = this.inplaceInput.childNodes[7];
+ } else {
+ text = this.inplaceInput.childNodes[6];
+ }
+
if (text) {
this.inplaceInput.removeChild(text);
}
},
getCurrentText : function() {
- return this.inplaceInput.childNodes[6];
+ var currentText;
+ // IE6 support
+ if (this.comboList.iframe) {
+ this.inplaceInput.childNodes[7];
+ } else {
+ this.inplaceInput.childNodes[6];
+ }
+
+ return
},
getLabelItem : function(value) {
Modified: trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
===================================================================
--- trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2008-04-29 15:02:12 UTC (rev 8329)
+++ trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2008-04-29 15:02:32 UTC (rev 8330)
@@ -26,7 +26,12 @@
this.listParent.style.top = top + "px";
this.listParent.style.left = 0 + "px";
- if (this.iframe) {
+
+ if (Richfaces.browser.isIE6) {
+ if (!this.iframe) {
+ this.createIframe(this.listParent.parentNode, this.width, this.list.id, "");
+ }
+
this.iframe.style.top = top + "px";
this.iframe.style.left = 0 + "px";
}
16 years, 7 months
JBoss Rich Faces SVN: r8329 - in trunk/ui/combobox/src/main: templates and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-04-29 11:02:12 -0400 (Tue, 29 Apr 2008)
New Revision: 8329
Modified:
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
trunk/ui/combobox/src/main/templates/combobox.jspx
Log:
http://jira.jboss.com/jira/browse/RF-3255
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-04-29 14:53:01 UTC (rev 8328)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-04-29 15:02:12 UTC (rev 8329)
@@ -55,7 +55,8 @@
}
if (Richfaces.browser.isIE6) {
- this.comboList.createIframe(this.combobox, listWidth, this.combobox.id,
+ //http://jira.jboss.com/jira/browse/RF-3255
+ this.comboList.createIframe(this.comboList.listParent.parentNode, listWidth, this.combobox.id,
"rich-combobox-list-width rich-combobox-list-scroll rich-combobox-list-position");
}
this.combobox.component = this;
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-04-29 14:53:01 UTC (rev 8328)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-04-29 15:02:12 UTC (rev 8329)
@@ -208,12 +208,12 @@
//var top = 0 ;//= -4;
var top = fieldHeight;
- var topIframe = comBottom;
+// var topIframe = comBottom;
if (parseInt(listHeight) > (docHeight - comBottom)) {
if (fieldTop > (docHeight - comBottom)) {
top = 0 - parseInt(listHeight);
- topIframe = top;
+// topIframe = top;
//var upPos = true;
}
}
@@ -225,7 +225,8 @@
top = Richfaces.ComboBoxList.getElemXY(this.listParent).top + this.fieldDimensions.height;
}*/
if (this.iframe) {
- this.iframe.style.top = topIframe + "px";
+// this.iframe.style.top = topIframe + "px";
+ this.iframe.style.top = top + "px";
this.iframe.style.left = 0 + "px";
}
},
@@ -390,6 +391,7 @@
iframe.id = "iframe" + comboboxId;
iframe.style.display = "none";
+ iframe.style.position = "absolute";
iframe.frameBorder="0";
iframe.scrolling="no";
// iframe.style.backgroundColor="#FFFFFF";
@@ -399,7 +401,8 @@
iframe.className = classes;
- parentElem.appendChild(iframe);
+// parentElem.appendChild(iframe);
+ parentElem.insertBefore(iframe,parentElem.firstChild);
this.iframe = $(iframe.id);
}
}
Modified: trunk/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/ui/combobox/src/main/templates/combobox.jspx 2008-04-29 14:53:01 UTC (rev 8328)
+++ trunk/ui/combobox/src/main/templates/combobox.jspx 2008-04-29 15:02:12 UTC (rev 8329)
@@ -206,7 +206,7 @@
x:passThruWithExclusions="value,name,type,id,styleClass,class,style,size,autocomplete,disabled,onchange">
<div class="rich-combobox-list-cord"></div>
- <div class="rich-combobox-font rich-combobox-shell" style="width:#{width};z-index:1;">
+ <div class="rich-combobox-font rich-combobox-shell" style="width:#{width};">
<input id="#{clientId}comboboxField"
name="#{clientId}comboboxField"
disabled="#{disabled}"
@@ -228,7 +228,7 @@
<div class="rich-combobox-strut rich-combobox-font" style="width:#{correction}">Strut</div>
</div>
- <div id="#{clientId}listParent" class="rich-combobox-list-cord #{listClass}" style="display:none; #{listStyle};z-index: 3;position:absolute;">
+ <div id="#{clientId}listParent" class="rich-combobox-list-cord #{listClass}" style="display:none; #{listStyle}; position:absolute;">
<div class="rich-combobox-shadow">
<table id="#{clientId}shadow" cellpadding="0" cellspacing="0" border="0">
<tr>
16 years, 7 months
JBoss Rich Faces SVN: r8328 - trunk/test-applications/facelets/src/main/webapp/DataTable.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-04-29 10:53:01 -0400 (Tue, 29 Apr 2008)
New Revision: 8328
Modified:
trunk/test-applications/facelets/src/main/webapp/DataTable/DataTable.xhtml
trunk/test-applications/facelets/src/main/webapp/DataTable/DataTableProperty.xhtml
Log:
Modified: trunk/test-applications/facelets/src/main/webapp/DataTable/DataTable.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataTable/DataTable.xhtml 2008-04-29 14:49:15 UTC (rev 8327)
+++ trunk/test-applications/facelets/src/main/webapp/DataTable/DataTable.xhtml 2008-04-29 14:53:01 UTC (rev 8328)
@@ -78,7 +78,8 @@
var="table">
<h:column>
<rich:dataGrid id="c2" columns="2" value="#{table.cells}"
- var="cell">
+ var="cell" binding="#{testBean.myDataGrid}" border="12px" dir="RTL"
+ elements="#{testBean.elements}">
<h:outputLabel value="Value:" for="field" />
<h:inputText id="field" value="#{cell.value}" required="true"/>
</rich:dataGrid>
Modified: trunk/test-applications/facelets/src/main/webapp/DataTable/DataTableProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataTable/DataTableProperty.xhtml 2008-04-29 14:49:15 UTC (rev 8327)
+++ trunk/test-applications/facelets/src/main/webapp/DataTable/DataTableProperty.xhtml 2008-04-29 14:53:01 UTC (rev 8328)
@@ -29,5 +29,11 @@
<h:outputText value=" row 2 rendered" />
<h:selectBooleanCheckbox value="#{dataTable.r2rendered}" onclick="submit();" />
+
+ <h:commandButton actionListener="#{testBean.checkBinding}" value="DG_binding"></h:commandButton>
+ <h:outputText value="#{testBean.bindLabel}"></h:outputText>
+
+ <h:outputText value="elements:"></h:outputText>
+ <h:outputText value="#{testBean.elements}"></h:outputText>
</h:panelGrid>
</f:subview>
\ No newline at end of file
16 years, 7 months
JBoss Rich Faces SVN: r8327 - trunk/test-applications/jsp/src/main/webapp/ContextMenu.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-04-29 10:49:15 -0400 (Tue, 29 Apr 2008)
New Revision: 8327
Modified:
trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp
Log:
http://jira.jboss.com/jira/browse/RF-1653
Modified: trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp 2008-04-29 14:41:17 UTC (rev 8326)
+++ trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp 2008-04-29 14:49:15 UTC (rev 8327)
@@ -14,7 +14,7 @@
<f:param name="cmdParam" value="abc" />
</rich:menuItem>
<rich:menuItem 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="event item"/></rich:menuItem>
- <rich:menuItem icon="/pics/header.png" value="JSAPI Hide" onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.doHide()" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/header.png" value="JSAPI Hide onmousemove" onmousemove="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.hide()" reRender="cmInfoID">
<f:param name="cmdParam" value="hide" />
</rich:menuItem>
<rich:menuSeparator />
@@ -45,13 +45,14 @@
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
- <a4j:commandLink onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.doShow()" value="JSAPI Show"></a4j:commandLink>
+
</rich:panel>
-
-
- <rich:panel style="width: 130px; height: 50px; background-color: #98FB98;">
- <h:outputText value="panel with contextMenu(Test)" />
- <rich:contextMenu id="contextMenuID" attached="#{contextMenu.attached}" submitMode="#{contextMenu.submitMode}"
+
+ <rich:panel id="cmPanelID" style="width: 130px; height: 50px; background-color: #98FB98;">
+ <h:outputText value="panel with contextMenu(attachTo)" />
+ </rich:panel>
+
+ <rich:contextMenu attachTo="cmPanelID" id="contextMenuID" attached="#{contextMenu.attached}" submitMode="#{contextMenu.submitMode}"
event="#{contextMenu.event}" disableDefaultMenu="#{contextMenu.disableDefaultMenu}" rendered="#{contextMenu.rendered}"
hideDelay="#{contextMenu.hideDelay}" showDelay="#{contextMenu.showDelay}" popupWidth="#{contextMenu.popupWidth}">
<rich:menuItem icon="/pics/header.png" value="abc" reRender="cmInfoID">
@@ -103,7 +104,7 @@
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
- </rich:panel>
+ <a4j:commandLink onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.show(event,'context')" value="JSAPI Show"></a4j:commandLink>
</h:panelGrid>
<a4j:commandButton value="reRender" reRender="cmInfoID"></a4j:commandButton>
16 years, 7 months
JBoss Rich Faces SVN: r8326 - trunk/test-applications/jsp/src/main/webapp/PickList.
by richfaces-svn-commits@lists.jboss.org
Author: gmaksimenko
Date: 2008-04-29 10:41:17 -0400 (Tue, 29 Apr 2008)
New Revision: 8326
Modified:
trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp
Log:
Erase tests for dir and size attributes.
Modified: trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp 2008-04-29 14:40:48 UTC (rev 8325)
+++ trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp 2008-04-29 14:41:17 UTC (rev 8326)
@@ -48,16 +48,6 @@
<h:selectBooleanCheckbox value="#{pickList.fastOrderControlsVisible}"
onchange="submit();"></h:selectBooleanCheckbox>
- <h:outputText value="dir:"></h:outputText>
-
- <h:selectOneMenu value="#{pickList.dir}" onchange="submit();">
- <f:selectItem itemValue="LTR" itemLabel="LTR"/>
- <f:selectItem itemValue="RTL" itemLabel="RTL"/>
- </h:selectOneMenu>
-
- <h:outputText value="size:"></h:outputText>
- <h:inputText value="#{pickList.size}" onchange="sumbit();"></h:inputText>
-
<h:outputText value="rendered:"></h:outputText>
<h:selectBooleanCheckbox value="#{pickList.rendered}" onchange="submit();"></h:selectBooleanCheckbox>
16 years, 7 months
JBoss Rich Faces SVN: r8325 - trunk/test-applications/jsp/src/main/java/pickList.
by richfaces-svn-commits@lists.jboss.org
Author: gmaksimenko
Date: 2008-04-29 10:40:48 -0400 (Tue, 29 Apr 2008)
New Revision: 8325
Modified:
trunk/test-applications/jsp/src/main/java/pickList/PickList.java
Log:
Erase tests for dir and size attributes.
Modified: trunk/test-applications/jsp/src/main/java/pickList/PickList.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2008-04-29 14:40:35 UTC (rev 8324)
+++ trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2008-04-29 14:40:48 UTC (rev 8325)
@@ -15,7 +15,6 @@
public class PickList {
public String copyAllControlLabel;
public String copyControlLabel;
- public String dir;
public boolean disabled;
public boolean fastOrderControlsVisible;
public boolean immediate;
@@ -26,7 +25,6 @@
public String removeControlLabel;
public boolean rendered;
public boolean showButtonLabels;
- public int size;
public String sourceListWidth;
public boolean switchByClick;
public String targetListWidth;
@@ -43,7 +41,6 @@
public PickList() {
this.copyAllControlLabel = "copyAllControlLabel";
this.copyControlLabel = "copyControlLabel";
- this.dir = "alert('work')";
this.disabled = false;
this.fastOrderControlsVisible = true;
this.immediate = false;
@@ -55,7 +52,6 @@
this.removeControlLabel = "removeControlLabel";
this.rendered = true;
this.showButtonLabels = true;
- this.size = 10;
this.sourceListWidth = "300";
this.switchByClick = false;
this.targetListWidth = "400";
@@ -137,14 +133,6 @@
this.copyControlLabel = copyControlLabel;
}
- public String getDir() {
- return dir;
- }
-
- public void setDir(String dir) {
- this.dir = dir;
- }
-
public boolean isDisabled() {
return disabled;
}
@@ -217,14 +205,6 @@
this.rendered = rendered;
}
- public int getSize() {
- return size;
- }
-
- public void setSize(int size) {
- this.size = size;
- }
-
public String getSourceListWidth() {
return sourceListWidth;
}
16 years, 7 months
JBoss Rich Faces SVN: r8324 - trunk/test-applications/facelets/src/main/webapp/PickList.
by richfaces-svn-commits@lists.jboss.org
Author: gmaksimenko
Date: 2008-04-29 10:40:35 -0400 (Tue, 29 Apr 2008)
New Revision: 8324
Modified:
trunk/test-applications/facelets/src/main/webapp/PickList/PickListProperty.xhtml
Log:
Erase tests for dir and size attributes.
Modified: trunk/test-applications/facelets/src/main/webapp/PickList/PickListProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/PickList/PickListProperty.xhtml 2008-04-29 14:40:20 UTC (rev 8323)
+++ trunk/test-applications/facelets/src/main/webapp/PickList/PickListProperty.xhtml 2008-04-29 14:40:35 UTC (rev 8324)
@@ -44,16 +44,6 @@
<h:selectBooleanCheckbox value="#{pickList.fastOrderControlsVisible}"
onchange="submit();"></h:selectBooleanCheckbox>
- <h:outputText value="dir:"></h:outputText>
-
- <h:selectOneMenu value="#{pickList.dir}" onchange="submit();">
- <f:selectItem itemValue="LTR" itemLabel="LTR"/>
- <f:selectItem itemValue="RTL" itemLabel="RTL"/>
- </h:selectOneMenu>
-
- <h:outputText value="size:"></h:outputText>
- <h:inputText value="#{pickList.size}" onchange="sumbit();"></h:inputText>
-
<h:outputText value="rendered:"></h:outputText>
<h:selectBooleanCheckbox value="#{pickList.rendered}" onchange="submit();"></h:selectBooleanCheckbox>
16 years, 7 months
JBoss Rich Faces SVN: r8323 - trunk/test-applications/facelets/src/main/webapp/PickList.
by richfaces-svn-commits@lists.jboss.org
Author: gmaksimenko
Date: 2008-04-29 10:40:20 -0400 (Tue, 29 Apr 2008)
New Revision: 8323
Modified:
trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml
Log:
Erase tests for dir and size attributes.
Modified: trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml 2008-04-29 14:39:59 UTC (rev 8322)
+++ trunk/test-applications/facelets/src/main/webapp/PickList/PickList.xhtml 2008-04-29 14:40:20 UTC (rev 8323)
@@ -11,7 +11,7 @@
style="#{style.style}" styleClass="#{style.styleClass}"
copyAllControlLabel="#{pickList.copyAllControlLabel}"
copyControlLabel="#{pickList.copyControlLabel}"
- disabled="#{pickList.copyControlLabel}" dir="#{pickList.dir}"
+ disabled="#{pickList.copyControlLabel}"
immediate="#{pickList.immediate}"
listsHeight="#{pickList.listsHeight}"
moveControlsVerticalAlign="#{pickList.moveControlsVerticalAlign}"
@@ -20,7 +20,7 @@
rendered="#{pickList.rendered}"
sourceListWidth="#{pickList.sourceListWidth}"
title="#{pickList.title}" switchByClick="#{pickList.switchByClick}"
- targetListWidth="#{pickList.targetListWidth}" size="#{pickList.size}"
+ targetListWidth="#{pickList.targetListWidth}"
required="#{pickList.required}"
requiredMessage="#{pickList.requiredMessage}"
onclick="#{event.onclick}"
16 years, 7 months