JBoss Rich Faces SVN: r4563 - in branches/3.1.x/test-applications/facelets/src/main: webapp/ComponentControl and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2007-12-06 11:27:54 -0500 (Thu, 06 Dec 2007)
New Revision: 4563
Modified:
branches/3.1.x/test-applications/facelets/src/main/java/modalPanel/ModalPanel.java
branches/3.1.x/test-applications/facelets/src/main/webapp/ComponentControl/ComponentControl.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenuProperty.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/DragAndDrop/DragAndDrop.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml
branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanelProperty.xhtml
Log:
Modified: branches/3.1.x/test-applications/facelets/src/main/java/modalPanel/ModalPanel.java
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/java/modalPanel/ModalPanel.java 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/java/modalPanel/ModalPanel.java 2007-12-06 16:27:54 UTC (rev 4563)
@@ -3,43 +3,54 @@
public class ModalPanel {
private boolean autosized;
- private boolean immediate;
private boolean keepVisualState;
private String left;
private String top;
private boolean rendered;
- private boolean required;
- private String requiredMessage;
private int shadowDepth;
private int shadowOpacity;
private boolean showWhenRendered;
private String zindex;
-
private int minHeight;
private int minWidth;
private int height;
private int width;
-
private boolean moveable;
private boolean resizeable;
+ private String inputTextTest;
+ private String selectOneListboxTest;
+
+ public String getInputTextTest() {
+ return inputTextTest;
+ }
+
+ public void setInputTextTest(String inputTextTest) {
+ this.inputTextTest = inputTextTest;
+ }
+
+ public String getSelectOneListboxTest() {
+ return selectOneListboxTest;
+ }
+
+ public void setSelectOneListboxTest(String selectOneListboxTest) {
+ this.selectOneListboxTest = selectOneListboxTest;
+ }
+
public ModalPanel() {
-
+ this.inputTextTest = "text";
+ this.selectOneListboxTest = "1";
this.minHeight = 100;
this.minWidth = 100;
this.height = 300;
this.width = 300;
-
this.moveable=true;
this.resizeable=true;
this.autosized = false;
- this.immediate = false;
this.keepVisualState = false;
this.left = "100";
this.top = "100";
this.rendered = true;
- this.required = true;
- this.requiredMessage = "requiredMessage";
this.shadowDepth = 3;
this.shadowOpacity = 3;
this.zindex = "3";
@@ -85,7 +96,12 @@
public void setResizeable(boolean resizeable) {
this.resizeable = resizeable;
}
+
+ public void setAutosized(boolean autosized) {
+ this.autosized = autosized;
+ }
+
public int getWidth() {
return width;
}
@@ -143,18 +159,6 @@
return autosized;
}
- public void setAutosized(boolean autosized) {
- this.autosized = autosized;
- }
-
- public boolean isImmediate() {
- return immediate;
- }
-
- public void setImmediate(boolean immediate) {
- this.immediate = immediate;
- }
-
public boolean isKeepVisualState() {
return keepVisualState;
}
@@ -187,22 +191,6 @@
this.rendered = rendered;
}
- public boolean isRequired() {
- return required;
- }
-
- public void setRequired(boolean required) {
- this.required = required;
- }
-
- public String getRequiredMessage() {
- return requiredMessage;
- }
-
- public void setRequiredMessage(String requiredMessage) {
- this.requiredMessage = requiredMessage;
- }
-
public int getShadowDepth() {
return shadowDepth;
}
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/ComponentControl/ComponentControl.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/ComponentControl/ComponentControl.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/ComponentControl/ComponentControl.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -2,24 +2,24 @@
xmlns:h="http://java.sun.com/jsf/html" xmlns:rich="http://richfaces.org/rich" xmlns:ui="http://java.sun.com/jsf/facelets">
<h:form>
<rich:modalPanel id="ccModalPanelID" onshow="alert(event.parameters.show)" onhide="alert(event.parameters.hide)">
- <h:outputLink id="hideButton1ID" onclick="return false;" value="Close">
+ <h:outputLink id="hideButton1ID" onclick="return false;" value="#">
<f:verbatim>Close 1</f:verbatim>
</h:outputLink>
<f:verbatim>
<br />
</f:verbatim>
- <h:outputLink id="hideButton2ID" onclick="return false;" value="Close">
+ <h:outputLink id="hideButton2ID" onclick="return false;" value="#">
<f:verbatim>Close 2</f:verbatim>
</h:outputLink>
</rich:modalPanel>
-
- <h:commandButton id="showButtonID" onclick="return false;" value="show ModalPanel">
- <rich:componentControl for="ccModalPanelID" event="onclick" operation="show" params="show:'componentControl work(show)'" />
+
+ <h:commandButton id="showButtonID" value="show ModalPanel" >
+ <rich:componentControl for="ccModalPanelID" event="onclick" disableDefault="true" operation="show" params="show:'componentControl work(show)'" />
</h:commandButton>
<rich:componentControl attachTo="hideButton1ID, hideButton2ID" event="onclick" for="ccModalPanelID" operation="hide"
params="hide:'componentControl work(hide)'" />
-
+
<ui:remove>
<f:verbatim>
<br />
@@ -41,7 +41,7 @@
<a href="#" id="testPMID" onclick="return false;">Click text</a>
</ui:remove>
-
+
<f:verbatim>
<br />
<br />
@@ -49,8 +49,8 @@
<rich:calendar popup="#{componentControl.calendarPopup}" id="ccCalendarID" />
<h:panelGrid columns="2">
- <h:outputText value="popup calendar" />
- <h:selectBooleanCheckbox id="calendarSelectID" value="#{componentControl.calendarPopup}" onchange="submit();" />
+ <h:outputText value="popup calendar" />
+ <h:selectBooleanCheckbox id="calendarSelectID" value="#{componentControl.calendarPopup}" onchange="submit();" />
</h:panelGrid>
<f:verbatim>
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -36,17 +36,17 @@
</rich:menuGroup>
</rich:contextMenu>
</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}"
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">
+ <rich:menuItem icon="/pics/header.png" value="abc">
<f:param name="cmdParam" value="abc" />
</rich:menuItem>
<rich:menuSeparator />
- <rich:menuItem icon="/pics/info.gif" value="action" action="alert('action work')" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/info.gif" value="action" reRender="cmInfoID">
<f:param name="cmdParam" value="action" />
</rich:menuItem>
<rich:menuItem icon="/pics/info.gif" value="actionListener" actionListener="#{contextMenu.actionListener}" reRender="cmInfoID">
@@ -97,7 +97,10 @@
<h:outputText value="Select items: " />
<h:outputText value="#{contextMenu.info}" style="color: red" />
</h:panelGrid>
-
+ <a4j:commandButton value="abc" reRender="cmInfoID">
+
+ </a4j:commandButton>
+
<h:panelGrid id="pgcmTestID" columns="3">
<h:selectOneMenu value="#{contextMenu.selectOneMenu}">
<f:selectItem itemLabel="select1" itemValue="select1" />
@@ -236,7 +239,9 @@
</rich:menuItem>
</rich:contextMenu>
</rich:tabPanel>
-
+ <a4j:commandButton value="abc" reRender="cmInfoID">
+ </a4j:commandButton>
+
<h:graphicImage id="gicmID" value="/pics/asus.jpg" height="125px" width="150px">
<rich:contextMenu attached="#{contextMenu.attached}" submitMode="#{contextMenu.submitMode}" event="#{contextMenu.event}"
disableDefaultMenu="#{contextMenu.disableDefaultMenu}" rendered="#{contextMenu.rendered}" hideDelay="#{contextMenu.hideDelay}"
@@ -319,9 +324,9 @@
</rich:contextMenu>
</h:inputText>
-
- <div id="divcmTestID" style="width: 80px; height: 45px; background-color: #008080;"> <rich:contextMenu
- attached="#{contextMenu.attached}" submitMode="#{contextMenu.submitMode}" event="#{contextMenu.event}"
+ <h:panelGroup>
+ <div id="divcmTestID" style="width: 80px; height: 45px; background-color: #008080;">
+ <rich:contextMenu 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="div" reRender="cmInfoID">
@@ -358,9 +363,10 @@
<f:selectItem itemLabel="item2" itemValue="item2" />
</h:selectOneMenu>
</rich:menuItem>
- </rich:contextMenu></div>
+ </rich:contextMenu>
+ </div>
+</h:panelGroup>
-
<h:panelGrid id="pgTestID" columns="1" border="5" cellpadding="2" cellspacing="2">
<h:outputText value="panelGrid" />
<h:outputText value="" />
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenuProperty.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenuProperty.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenuProperty.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -31,10 +31,11 @@
</h:inputText>
<h:outputText value="submitMode:" />
- <h:selectOneRadio value="#{contextMenu.submitMode}" onchange="submit();">
+ <h:selectOneRadio value="#{contextMenu.submitMode}">
<f:selectItem itemLabel="none" itemValue="none" />
<f:selectItem itemLabel="server" itemValue="server" />
<f:selectItem itemLabel="ajax" itemValue="ajax" />
+ <a4j:support event="onchange" action="submit();"></a4j:support>
</h:selectOneRadio>
<h:outputText value="attached" />
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedList.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -1,7 +1,7 @@
<f:subview id="dataOrderedListSubviewID" 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" xmlns:ui="http://java.sun.com/jsf/facelets">
<rich:dataOrderedList id="doListID" value="#{dataOrderedList.arr}" var="arr" first="#{dataOrderedList.first}"
- rendered="#{dataOrderedList.rendered}" title="#{dataOrderedList.title}" type="#{dataOrderedList.type}" dir="#{dataOrderedList.dir}"
+ rendered="#{dataOrderedList.rendered}" title="#{dataOrderedList.title}" type="disc" dir="#{dataOrderedList.dir}"
rows="#{dataOrderedList.rows}">
<f:facet name="header">
<h:outputText value="Africa(header):" />
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/DataOrderedList/DataOrderedListProperty.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -34,7 +34,7 @@
<f:selectItem itemValue="a" itemLabel="a"/>
<f:selectItem itemValue="I" itemLabel="I"/>
<f:selectItem itemValue="i" itemLabel="i"/>
- <f:selectItem itemValue="disk" itemLabel="disk"/>
+ <f:selectItem itemValue="disc" itemLabel="disc"/>
<f:selectItem itemValue="circle" itemLabel="circle"/>
<f:selectItem itemValue="square" itemLabel="square"/>
<a4j:support event="onchange" reRender="doListID"></a4j:support>
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/DragAndDrop/DragAndDrop.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/DragAndDrop/DragAndDrop.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/DragAndDrop/DragAndDrop.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -186,7 +186,7 @@
<f:verbatim>dragSupport</f:verbatim>
</h:panelGrid>
- <a4j:status id="adf" startText="...request..." stopText="stop" />
+
<a4j:outputPanel ajaxRendered="true">
<h:messages />
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanel.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -1,13 +1,13 @@
<f:subview id="modalPanelSubviewID" xmlns:a4j="http://richfaces.org/a4j" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html" xmlns:rich="http://richfaces.org/rich" xmlns:ui="http://java.sun.com/jsf/facelets">
<h:messages />
- <rich:modalPanel id="modalPanelID" minHeight="#{modalPanel.minHeight}" minWidth="#{modalPanel.minWidth}" height="#{modalPanel.height}"
- width="#{modalPanel.width}" moveable="#{modalPanel.moveable}" resizeable="#{modalPanel.resizeable}"
- immediate="#{modalPanel.immediate}" keepVisualState="#{modalPanel.keepVisualState}" rendered="#{modalPanel.rendered}"
- zindex="#{modalPanel.zindex}" autosized="#{modalPanel.autosized}" left="#{modalPanel.left}" top="#{modalPanel.top}"
- required="#{modalPanel.required}" requiredMessage="#{modalPanel.requiredMessage}" shadowDepth="#{modalPanel.shadowDepth}"
- shadowOpacity="#{modalPanel.shadowOpacity}" showWhenRendered="#{modalPanel.showWhenRendered}"
- onhide="print('onhideInputID', 'onhide work!')" onshow="print('onshowInputID', 'onshow work!')">
+ <rich:modalPanel id="modalPanelID" minHeight="#{modalPanel.minHeight}" minWidth="#{modalPanel.minWidth}"
+ height="#{modalPanel.height}" width="#{modalPanel.width}" moveable="#{modalPanel.moveable}"
+ resizeable="#{modalPanel.resizeable}" keepVisualState="#{modalPanel.keepVisualState}"
+ rendered="#{modalPanel.rendered}" zindex="#{modalPanel.zindex}" autosized="#{modalPanel.autosized}" left="#{modalPanel.left}"
+ top="#{modalPanel.top}" shadowDepth="#{modalPanel.shadowDepth}" shadowOpacity="#{modalPanel.shadowOpacity}"
+ showWhenRendered="#{modalPanel.showWhenRendered}" onhide="print('onhideInputID', 'onhide work!')"
+ onshow="print('onshowInputID', 'onshow work!')">
<f:facet name="header">
<h:outputText value="Heder goes here..." />
</f:facet>
@@ -15,11 +15,17 @@
<h:graphicImage value="/pics/error.gif" onclick="Richfaces.hideModalPanel('modalPanelID');return false;" />
</f:facet>
<h:outputText value="This is Modal Panel example" styleClass="text1" />
+ <h:inputText value="#{modalPanel.inputTextTest}" />
+ <h:selectOneListbox value="#{modalPanel.selectOneListboxTest}">
+ <f:selectItem itemLabel="1" itemValue="1" />
+ <f:selectItem itemLabel="2" itemValue="2" />
+ <f:selectItem itemLabel="3" itemValue="3" />
+ </h:selectOneListbox>
<f:verbatim>
<br />
<br />
</f:verbatim>
- <h:outputLink onclick="Richfaces.hideModalPanel('MPid');return false;" value="Close">
+ <h:outputLink onclick="Richfaces.hideModalPanel('modalPanelID');return false;" value="Close">
<f:verbatim>Close</f:verbatim>
</h:outputLink>
</rich:modalPanel>
Modified: branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanelProperty.xhtml
===================================================================
--- branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanelProperty.xhtml 2007-12-06 15:09:45 UTC (rev 4562)
+++ branches/3.1.x/test-applications/facelets/src/main/webapp/ModalPanel/ModalPanelProperty.xhtml 2007-12-06 16:27:54 UTC (rev 4563)
@@ -38,7 +38,7 @@
<h:outputText value="showWhenRendered" />
<h:selectBooleanCheckbox value="#{modalPanel.showWhenRendered}" >
- <a4j:support event="onchange" reRender="modalPanelID""></a4j:support>
+ <a4j:support event="onchange" reRender="modalPanelID"></a4j:support>
</h:selectBooleanCheckbox>
<h:outputText value="zindex" />
@@ -48,11 +48,6 @@
<a4j:support event="onchange" reRender="modalPanelID"></a4j:support>
</h:selectOneRadio>
- <h:outputText value="autosized" />
- <h:selectBooleanCheckbox value="#{modalPanel.autosized}" >
- <a4j:support event="onchange" reRender="modalPanelID"></a4j:support>
- </h:selectBooleanCheckbox>
-
<h:outputText value="Width:" />
<h:inputText value="#{modalPanel.width}">
<a4j:support event="onchange" reRender="modalPanelID"></a4j:support>
@@ -72,10 +67,15 @@
<h:inputText value="#{modalPanel.minHeight}">
<a4j:support event="onchange" reRender="modalPanelID"></a4j:support>
</h:inputText>
+
+ <h:outputText value="autosized" />
+ <h:selectBooleanCheckbox value="#{modalPanel.autosized}" >
+
+ </h:selectBooleanCheckbox>
<h:outputText value="Resizeable:" />
- <h:selectBooleanCheckbox value="#{modalPanel.resizeable}">
- <a4j:support event="onclick" reRender="modalPanelID"></a4j:support>
+ <h:selectBooleanCheckbox value="#{modalPanel.resizeable}" onchange="submit();">
+
</h:selectBooleanCheckbox>
<h:outputText value="Moveable:" />
18 years, 5 months
JBoss Rich Faces SVN: r4562 - trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/css.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-12-06 10:09:45 -0500 (Thu, 06 Dec 2007)
New Revision: 4562
Modified:
trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/css/suggestionbox.xcss
Log:
http://jira.jboss.com/jira/browse/RF-1533
Modified: trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/css/suggestionbox.xcss
===================================================================
--- trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/css/suggestionbox.xcss 2007-12-06 14:45:55 UTC (rev 4561)
+++ trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/css/suggestionbox.xcss 2007-12-06 15:09:45 UTC (rev 4562)
@@ -31,8 +31,8 @@
}
.dr-sb-overflow {
- overflow : auto;
- overflow-x : hidden;
+ overflow-y : auto;
+ overflow-x : auto;
}
.dr-sb-int-decor-table {
18 years, 5 months
JBoss Rich Faces SVN: r4561 - in branches/3.1.x/ui: orderingList/src/main/resources/org/richfaces/renderkit/html/css and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2007-12-06 09:45:55 -0500 (Thu, 06 Dec 2007)
New Revision: 4561
Modified:
branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/css/listShuttle.xcss
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss
Log:
Small skin fixes and http://jira.jboss.com/jira/browse/RF-1539
Modified: branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/css/listShuttle.xcss
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/css/listShuttle.xcss 2007-12-06 13:41:34 UTC (rev 4560)
+++ branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/css/listShuttle.xcss 2007-12-06 14:45:55 UTC (rev 4561)
@@ -56,7 +56,7 @@
.rich-list-shuttle-button, .rich-list-shuttle-button-disabled {
background : top left repeat-x;
- padding : 2px 0px;
+ padding : 2px;
}
.rich-list-shuttle-button {
@@ -175,7 +175,7 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
</u:style>
- <u:style name="background-color" skin="tabBackgroundColor" />
+ <u:style name="background-color" skin="trimColor" />
<u:style name="color" skin="generalTextColor"/>
<u:style name="font-family" skin="headerFamilyFont"/>
<u:style name="font-size" skin="headerSizeFont"/>
@@ -185,7 +185,7 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
</u:style>
- <u:style name="background-color" skin="tabBackgroundColor" />
+ <u:style name="background-color" skin="trimColor" />
<u:style name="color" skin="tabDisabledTextColor"/>
<u:style name="font-family" skin="headerFamilyFont"/>
<u:style name="font-size" skin="headerSizeFont"/>
@@ -195,8 +195,8 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
</u:style>
- <u:style name="background-color" skin="tabBackgroundColor" />
- <u:style name="border-color" skin="tableBorderColor" />
+ <u:style name="background-color" skin="trimColor" />
+ <u:style name="border-color" skin="selectControlColor" />
<u:style name="border-width" skin="tableBorderWidth" />
<u:style name="font-family" skin="headerFamilyFont" />
<u:style name="font-size" skin="headerSizeFont" />
@@ -207,7 +207,7 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListClickedGradient" />
</u:style>
- <u:style name="background-color" skin="generalBackgroundColor" />
+ <u:style name="background-color" skin="additionalBackgroundColor" />
<u:style name="border-color" skin="tableBorderColor" />
<u:style name="border-width" skin="tableBorderWidth" />
<u:style name="font-family" skin="headerFamilyFont" />
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss 2007-12-06 13:41:34 UTC (rev 4560)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss 2007-12-06 14:45:55 UTC (rev 4561)
@@ -177,7 +177,7 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
</u:style>
- <u:style name="background-color" skin="tabBackgroundColor" />
+ <u:style name="background-color" skin="trimColor" />
<u:style name="color" skin="generalTextColor"/>
<u:style name="font-family" skin="headerFamilyFont"/>
<u:style name="font-size" skin="headerSizeFont"/>
@@ -187,7 +187,7 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
</u:style>
- <u:style name="background-color" skin="tabBackgroundColor" />
+ <u:style name="background-color" skin="trimColor" />
<u:style name="color" skin="tabDisabledTextColor"/>
<u:style name="font-family" skin="headerFamilyFont"/>
<u:style name="font-size" skin="headerSizeFont"/>
@@ -209,7 +209,7 @@
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListClickedGradient" />
</u:style>
- <u:style name="background-color" skin="generalBackgroundColor" />
+ <u:style name="background-color" skin="additionalBackgroundColor" />
<u:style name="border-color" skin="tableBorderColor" />
<u:style name="border-width" skin="tableBorderWidth" />
<u:style name="font-family" skin="headerFamilyFont" />
18 years, 5 months
JBoss Rich Faces SVN: r4560 - branches/3.1.x/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2007-12-06 08:41:34 -0500 (Thu, 06 Dec 2007)
New Revision: 4560
Added:
branches/3.1.x/docs/userguide/en/src/main/resources/images/orderingList_classes.png
Log:
http://jira.jboss.com/jira/browse/RF-1184 - screenshot for style classes of the orderingList component
Added: branches/3.1.x/docs/userguide/en/src/main/resources/images/orderingList_classes.png
===================================================================
(Binary files differ)
Property changes on: branches/3.1.x/docs/userguide/en/src/main/resources/images/orderingList_classes.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
18 years, 5 months
JBoss Rich Faces SVN: r4559 - branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-12-06 08:41:29 -0500 (Thu, 06 Dec 2007)
New Revision: 4559
Modified:
branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java
Log:
RF-1200
Modified: branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java
===================================================================
--- branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java 2007-12-06 13:40:26 UTC (rev 4558)
+++ branches/3.1.x/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java 2007-12-06 13:41:29 UTC (rev 4559)
@@ -39,6 +39,8 @@
private UICalendar calendar1;
+ private UICalendar calendar2;
+
private static Set javaScripts = new HashSet();
static {
@@ -50,6 +52,8 @@
.add("org/richfaces/renderkit/html/scripts/json/json-dom.js");
javaScripts.add("org/richfaces/renderkit/html/scripts/calendar.js");
javaScripts.add("org/richfaces/renderkit/html/scripts/scriptaculous/effects.js");
+ javaScripts.add("org/richfaces/renderkit/html/scripts/JQuerySpinBtn.js");
+ javaScripts.add("org/richfaces/renderkit/html/scripts/jquery/jquery.js");
}
public CalendarComponentTest(String name) {
@@ -69,7 +73,7 @@
.createComponent(UICalendar.COMPONENT_TYPE);
calendar.setLocale(Locale.UK);
calendar.setDatePattern("d/MM/yyyy");
- calendar.setTimeZone(TimeZone.getTimeZone("Europe/London"));
+ calendar.setTimeZone(TimeZone.getTimeZone("GMT+10:00"));
/*
* String[] strarr = TimeZone.getAvailableIDs(); for(int i=0; i <
* strarr.length; i++){ System.out.println(strarr[i]); }
@@ -79,14 +83,22 @@
// XXX test CurrentDate = null
calendar.setPopup(true);
Calendar calendarObject = Calendar.getInstance();
- calendarObject.set(2001, Calendar.SEPTEMBER, 11, 1, 1, 1);
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11);
calendar.setId("calendar");
calendar.setSubmittedValue(calendarObject.getTime());
form.getChildren().add(calendar);
calendar1.setId("_calendar");
calendar1.setPopup(false);
calendar1.setCurrentDate(null);
- form.getChildren().add(calendar1);
+ form.getChildren().add(calendar1);
+
+ calendar2 = (UICalendar) application
+ .createComponent(UICalendar.COMPONENT_TYPE);
+ calendar2.setDatePattern("dd/M/yy HH:mm");
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11, 13, 36);
+ calendar2.setSubmittedValue(calendarObject.getTime());
+ calendar2.setId("timecalendar");
+ form.getChildren().add(calendar2);
}
/*
@@ -159,23 +171,15 @@
assertEquals(calendar.getPreloadDateRangeEnd(), range[range.length - 1]);
assertEquals(30, range.length);
}
-
+
public void testCalendarRenderer() throws Exception {
- /*
- * UIViewRoot root = facesContext.getViewRoot();
- * root.processDecodes(facesContext);
- * root.processValidators(facesContext);
- * root.processUpdates(facesContext);
- * root.processApplication(facesContext);
- */
HtmlPage page = renderView();
assertNotNull(page);
//System.out.println(page.asXml());
- HtmlElement htmlCalendar = page.getHtmlElementById(calendar
- .getClientId(facesContext));
- assertNotNull(htmlCalendar);
+ HtmlElement htmlSpan = page.getHtmlElementById(calendar.getClientId(facesContext)+"Popup");
+ assertNotNull(htmlSpan);
HtmlInput htmlCalendarInput = (HtmlInput) page
.getHtmlElementById(calendar.getClientId(facesContext)
@@ -190,11 +194,12 @@
assertNotNull(htmlCalendarButton);
assertNotNull(htmlCalendarSpan);
- assertEquals("10/09/2001", htmlCalendarInput.getValueAttribute());
+ assertEquals("11/09/2001", htmlCalendarInput.getValueAttribute());
- HtmlElement htmlCalendar1 = page.getHtmlElementById(calendar1
- .getClientId(facesContext));
- assertNotNull(htmlCalendar1);
+ HtmlElement htmlCalendar1Span = page.getHtmlElementById(calendar1
+ .getClientId(facesContext)+"Popup");
+ assertNotNull(htmlCalendar1Span);
+ assertEquals("display: none", htmlCalendar1Span.getAttributeValue("style"));
try {
HtmlInput htmlCalendarInput1 = (HtmlInput) page
@@ -203,6 +208,7 @@
} catch (ElementNotFoundException e) {
assertNotNull(e);
}
+
try {
HtmlButton htmlCalendarButton1 = (HtmlButton) page
.getHtmlElementById(calendar1.getClientId(facesContext)
@@ -221,9 +227,9 @@
}
public void testCalendarDecode() throws Exception {
- // XXX Add set Date and time
+
Calendar calendarObject = Calendar.getInstance();
- calendarObject.set(2001, Calendar.SEPTEMBER, 11, 1, 1, 1);
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11);
calendar.decode(facesContext);
assertEquals(calendarObject.getTime(), calendar.getSubmittedValue());
calendarObject.set(2002, Calendar.SEPTEMBER, 11, 1, 1, 1);
@@ -235,7 +241,7 @@
public void testCalendarStyles() throws Exception {
HtmlPage page = renderView();
assertNotNull(page);
- // System.out.println(page.asXml());
+ //System.out.println(page.asXml());
List links = page.getDocumentElement().getHtmlElementsByTagName("link");
assertEquals(1, links.size());
HtmlElement link = (HtmlElement) links.get(0);
@@ -258,11 +264,15 @@
assertTrue(scriptBodyString.contains("datePattern"));
assertTrue(scriptBodyString.contains("d/MM/yyyy"));
assertTrue(scriptBodyString.contains("selectedDate"));
- assertTrue(scriptBodyString.contains("Date(2001,8,11)"));
assertTrue(scriptBodyString.contains("popup: true"));
-
+ assertTrue(scriptBodyString.contains("currentDate:"));
+ assertTrue(scriptBodyString.contains("selectedDate:"));
+ }else if(scriptBodyString.contains("form:timecalendar")){
+
+ assertTrue(scriptBodyString.contains("selectedDate: new Date(2001,8,11,13,36,0)"));
}
}
+
if (StringUtils.isNotBlank(srcAttr)) {
boolean found = false;
@@ -278,6 +288,15 @@
}
}
+ public void testCalendarTime() throws Exception{
+
+ Date time = (Date) calendar2.getValue();
+ Calendar calendarObject = Calendar.getInstance();
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11, 13, 36);
+ assertEquals(calendarObject.getTime(), calendar2.getSubmittedValue());
+
+ }
+
public void tearDown() throws Exception {
super.tearDown();
form = null;
18 years, 5 months
JBoss Rich Faces SVN: r4558 - branches/3.1.x/docs/userguide/en/src/main/resources/images.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2007-12-06 08:40:26 -0500 (Thu, 06 Dec 2007)
New Revision: 4558
Added:
branches/3.1.x/docs/userguide/en/src/main/resources/images/listShuttle1.png
Log:
http://jira.jboss.com/jira/browse/RF-1174 - initial screenshot for listShuttle
Added: branches/3.1.x/docs/userguide/en/src/main/resources/images/listShuttle1.png
===================================================================
(Binary files differ)
Property changes on: branches/3.1.x/docs/userguide/en/src/main/resources/images/listShuttle1.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
18 years, 5 months
JBoss Rich Faces SVN: r4557 - trunk/ui/calendar/src/test/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-12-06 08:39:10 -0500 (Thu, 06 Dec 2007)
New Revision: 4557
Modified:
trunk/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java
Log:
RF-1200
Modified: trunk/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java
===================================================================
--- trunk/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java 2007-12-06 13:38:55 UTC (rev 4556)
+++ trunk/ui/calendar/src/test/java/org/richfaces/component/CalendarComponentTest.java 2007-12-06 13:39:10 UTC (rev 4557)
@@ -39,6 +39,8 @@
private UICalendar calendar1;
+ private UICalendar calendar2;
+
private static Set javaScripts = new HashSet();
static {
@@ -50,6 +52,8 @@
.add("org/richfaces/renderkit/html/scripts/json/json-dom.js");
javaScripts.add("org/richfaces/renderkit/html/scripts/calendar.js");
javaScripts.add("org/richfaces/renderkit/html/scripts/scriptaculous/effects.js");
+ javaScripts.add("org/richfaces/renderkit/html/scripts/JQuerySpinBtn.js");
+ javaScripts.add("org/richfaces/renderkit/html/scripts/jquery/jquery.js");
}
public CalendarComponentTest(String name) {
@@ -69,7 +73,7 @@
.createComponent(UICalendar.COMPONENT_TYPE);
calendar.setLocale(Locale.UK);
calendar.setDatePattern("d/MM/yyyy");
- calendar.setTimeZone(TimeZone.getTimeZone("Europe/London"));
+ calendar.setTimeZone(TimeZone.getTimeZone("GMT+10:00"));
/*
* String[] strarr = TimeZone.getAvailableIDs(); for(int i=0; i <
* strarr.length; i++){ System.out.println(strarr[i]); }
@@ -79,14 +83,22 @@
// XXX test CurrentDate = null
calendar.setPopup(true);
Calendar calendarObject = Calendar.getInstance();
- calendarObject.set(2001, Calendar.SEPTEMBER, 11, 1, 1, 1);
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11);
calendar.setId("calendar");
calendar.setSubmittedValue(calendarObject.getTime());
form.getChildren().add(calendar);
calendar1.setId("_calendar");
calendar1.setPopup(false);
calendar1.setCurrentDate(null);
- form.getChildren().add(calendar1);
+ form.getChildren().add(calendar1);
+
+ calendar2 = (UICalendar) application
+ .createComponent(UICalendar.COMPONENT_TYPE);
+ calendar2.setDatePattern("dd/M/yy HH:mm");
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11, 13, 36);
+ calendar2.setSubmittedValue(calendarObject.getTime());
+ calendar2.setId("timecalendar");
+ form.getChildren().add(calendar2);
}
/*
@@ -159,23 +171,15 @@
assertEquals(calendar.getPreloadDateRangeEnd(), range[range.length - 1]);
assertEquals(30, range.length);
}
-
+
public void testCalendarRenderer() throws Exception {
- /*
- * UIViewRoot root = facesContext.getViewRoot();
- * root.processDecodes(facesContext);
- * root.processValidators(facesContext);
- * root.processUpdates(facesContext);
- * root.processApplication(facesContext);
- */
HtmlPage page = renderView();
assertNotNull(page);
//System.out.println(page.asXml());
- HtmlElement htmlCalendar = page.getHtmlElementById(calendar
- .getClientId(facesContext));
- assertNotNull(htmlCalendar);
+ HtmlElement htmlSpan = page.getHtmlElementById(calendar.getClientId(facesContext)+"Popup");
+ assertNotNull(htmlSpan);
HtmlInput htmlCalendarInput = (HtmlInput) page
.getHtmlElementById(calendar.getClientId(facesContext)
@@ -190,11 +194,12 @@
assertNotNull(htmlCalendarButton);
assertNotNull(htmlCalendarSpan);
- assertEquals("10/09/2001", htmlCalendarInput.getValueAttribute());
+ assertEquals("11/09/2001", htmlCalendarInput.getValueAttribute());
- HtmlElement htmlCalendar1 = page.getHtmlElementById(calendar1
- .getClientId(facesContext));
- assertNotNull(htmlCalendar1);
+ HtmlElement htmlCalendar1Span = page.getHtmlElementById(calendar1
+ .getClientId(facesContext)+"Popup");
+ assertNotNull(htmlCalendar1Span);
+ assertEquals("display: none", htmlCalendar1Span.getAttributeValue("style"));
try {
HtmlInput htmlCalendarInput1 = (HtmlInput) page
@@ -203,6 +208,7 @@
} catch (ElementNotFoundException e) {
assertNotNull(e);
}
+
try {
HtmlButton htmlCalendarButton1 = (HtmlButton) page
.getHtmlElementById(calendar1.getClientId(facesContext)
@@ -221,9 +227,9 @@
}
public void testCalendarDecode() throws Exception {
- // XXX Add set Date and time
+
Calendar calendarObject = Calendar.getInstance();
- calendarObject.set(2001, Calendar.SEPTEMBER, 11, 1, 1, 1);
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11);
calendar.decode(facesContext);
assertEquals(calendarObject.getTime(), calendar.getSubmittedValue());
calendarObject.set(2002, Calendar.SEPTEMBER, 11, 1, 1, 1);
@@ -235,7 +241,7 @@
public void testCalendarStyles() throws Exception {
HtmlPage page = renderView();
assertNotNull(page);
- // System.out.println(page.asXml());
+ //System.out.println(page.asXml());
List links = page.getDocumentElement().getHtmlElementsByTagName("link");
assertEquals(1, links.size());
HtmlElement link = (HtmlElement) links.get(0);
@@ -258,11 +264,15 @@
assertTrue(scriptBodyString.contains("datePattern"));
assertTrue(scriptBodyString.contains("d/MM/yyyy"));
assertTrue(scriptBodyString.contains("selectedDate"));
- assertTrue(scriptBodyString.contains("Date(2001,8,11)"));
assertTrue(scriptBodyString.contains("popup: true"));
-
+ assertTrue(scriptBodyString.contains("currentDate:"));
+ assertTrue(scriptBodyString.contains("selectedDate:"));
+ }else if(scriptBodyString.contains("form:timecalendar")){
+
+ assertTrue(scriptBodyString.contains("selectedDate: new Date(2001,8,11,13,36,0)"));
}
}
+
if (StringUtils.isNotBlank(srcAttr)) {
boolean found = false;
@@ -278,6 +288,15 @@
}
}
+ public void testCalendarTime() throws Exception{
+
+ Date time = (Date) calendar2.getValue();
+ Calendar calendarObject = Calendar.getInstance();
+ calendarObject.set(2001, Calendar.SEPTEMBER, 11, 13, 36);
+ assertEquals(calendarObject.getTime(), calendar2.getSubmittedValue());
+
+ }
+
public void tearDown() throws Exception {
super.tearDown();
form = null;
18 years, 5 months
JBoss Rich Faces SVN: r4556 - branches/3.1.x/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2007-12-06 08:38:55 -0500 (Thu, 06 Dec 2007)
New Revision: 4556
Modified:
branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.xml
Log:
http://jira.jboss.com/jira/browse/RF-1174 - add Skin Parameters Redefinition; edit Definition of Custom Style Classes
Modified: branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.xml
===================================================================
--- branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2007-12-06 13:38:23 UTC (rev 4555)
+++ branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.xml 2007-12-06 13:38:55 UTC (rev 4556)
@@ -14,7 +14,7 @@
</para>
<programlisting role="XML"><![CDATA[...
<rich:listShuttle value="#{bean.list}" var="list" selection="#{value.resultList}">
- <f:facet name=header>
+ <f:facet name="header">
<h:outputText value="Header1"/>
</f:facet>
<rich:column>
@@ -280,7 +280,7 @@
<table>
<title>JavaScript API</title>
- <tgroup cols="3">
+ <tgroup cols="2">
<thead>
<row>
<entry>Function</entry>
@@ -289,6 +289,7 @@
</thead>
<tbody>
<!--Sorting API -->
+ <!--
<row>
<entry>doSortAscending()</entry>
<entry>Sorts items in the list ascending</entry>
@@ -301,6 +302,7 @@
<entry>doSort()</entry>
<entry>Inverts current sorting</entry>
</row>
+ -->
<!--Controls common API -->
<row>
<entry>doHide()</entry>
@@ -388,49 +390,94 @@
</itemizedlist>
</para>
</section>
+
<section>
- <title>Definition of Custom Style Classes</title>
-
- <para>On the screenshot there are classes names that define styles for component elements.</para>
-
- <!-- ADD SCREENSHOT -->
-
- <!-- ADD ITEMS representations!!!-->
-
+ <title>Skin Parameters Redefinition</title>
<table>
- <title>Classes names that define a caption representations in the source list</title>
+ <title>Skin parameters redefinition for items in the source and target lists</title>
<tgroup cols="2">
<thead>
<row>
- <entry>Class name</entry>
- <entry>Description</entry>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
</row>
</thead>
<tbody>
<row>
- <entry>rich-shuttle-source-caption</entry>
- <entry>Defines a class for caption customization</entry>
+ <entry>generalBackgroundColor</entry>
+ <entry>background-color</entry>
</row>
+ <row>
+ <entry>panelBorderColor</entry>
+ <entry>border-color</entry>
+ </row>
+ <row>
+ <entry>tableBorderWidth</entry>
+ <entry>border-width</entry>
+ </row>
</tbody>
</tgroup>
</table>
+
<table>
- <title>Classes names that define a caption representations in the target list</title>
+ <title>Skin parameters redefinition for caption in the source and target lists</title>
<tgroup cols="2">
<thead>
<row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>headerFamilyFont</entry>
+ <entry>font-family</entry>
+ </row>
+ <row>
+ <entry>headerSizeFont</entry>
+ <entry>font-size</entry>
+ </row>
+ <row>
+ <entry>headerWeightFont</entry>
+ <entry>font-weight</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ </section>
+
+ <section>
+ <title>Definition of Custom Style Classes</title>
+
+ <para>On the screenshot there are classes names that define styles for component elements.</para>
+
+ <!-- ADD SCREENSHOT -->
+
+ <!-- ADD ITEMS representations!!!-->
+
+ <table>
+ <title>Classes names that define a caption representations in the source and target lists</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
<entry>Class name</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
+ <entry>rich-shuttle-source-caption</entry>
+ <entry>Defines a class for caption customization in the source list</entry>
+ </row>
+ <row>
<entry>rich-shuttle-target-caption</entry>
- <entry>Defines a class for caption customization</entry>
+ <entry>Defines a class for caption customization in the target list</entry>
</row>
</tbody>
</tgroup>
</table>
+
<table>
<title>Classes names that define a rows representations in the source list</title>
<tgroup cols="2">
@@ -467,15 +514,15 @@
</thead>
<tbody>
<row>
- <entry>rich-shuttle-target -row</entry>
+ <entry>rich-shuttle-target-row</entry>
<entry>Defines a default class for any item row</entry>
</row>
<row>
- <entry>rich-shuttle-row-target -selected</entry>
+ <entry>rich-shuttle-row-target-selected</entry>
<entry>Defines class to be additionally added to selected item rows</entry>
</row>
<row>
- <entry>rich-shuttle-row-target -active</entry>
+ <entry>rich-shuttle-row-target-active</entry>
<entry>Defines class to be additionally added to active item rows</entry>
</row>
</tbody>
@@ -517,15 +564,15 @@
</thead>
<tbody>
<row>
- <entry>rich-shuttle-target -cell</entry>
+ <entry>rich-shuttle-target-cell</entry>
<entry>Defines a default class for any item cell</entry>
</row>
<row>
- <entry>rich-shuttle-target -cell-selected</entry>
+ <entry>rich-shuttle-target-cell-selected</entry>
<entry>Defines class to be additionally added to selected item cells</entry>
</row>
<row>
- <entry>rich-shuttle-target -cell-active</entry>
+ <entry>rich-shuttle-target-cell-active</entry>
<entry>Defines class to be additionally added to active item cells</entry>
</row>
</tbody>
18 years, 5 months
JBoss Rich Faces SVN: r4555 - branches/3.1.x/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2007-12-06 08:38:23 -0500 (Thu, 06 Dec 2007)
New Revision: 4555
Modified:
branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
Log:
http://jira.jboss.com/jira/browse/RF-1174 - add the initial screenshot
Modified: branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
===================================================================
--- branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2007-12-06 13:37:43 UTC (rev 4554)
+++ branches/3.1.x/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2007-12-06 13:38:23 UTC (rev 4555)
@@ -13,7 +13,7 @@
from one list into another with their optional reordering there.</para>
<mediaobject>
<imageobject>
- <imagedata fileref=""/>
+ <imagedata fileref="images/listShuttle1.png"/>
</imageobject>
</mediaobject>
</section>
18 years, 5 months