JBoss Rich Faces SVN: r13682 - trunk/test-applications/realworld2/web/src/main/webapp/includes/index.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 07:02:49 -0400 (Mon, 20 Apr 2009)
New Revision: 13682
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/login.xhtml
Log:
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/login.xhtml
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Rich Faces SVN: r13681 - in trunk/test-applications/jsp/src/main: webapp/PickList and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2009-04-20 07:02:36 -0400 (Mon, 20 Apr 2009)
New Revision: 13681
Modified:
trunk/test-applications/jsp/src/main/java/pickList/PickList.java
trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp
trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp
Log:
Modified: trunk/test-applications/jsp/src/main/java/pickList/PickList.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2009-04-20 11:01:08 UTC (rev 13680)
+++ trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2009-04-20 11:02:36 UTC (rev 13681)
@@ -1,5 +1,6 @@
package pickList;
+import java.lang.reflect.Array;
import java.util.ArrayList;
import javax.faces.context.FacesContext;
@@ -15,7 +16,6 @@
public String copyAllControlLabel;
public String copyControlLabel;
public boolean disabled;
- public boolean fastOrderControlsVisible;
public boolean immediate;
public String listsHeight;
public String localValueSet;
@@ -35,6 +35,9 @@
private String valueCL;
private HtmlPickList myPickList = null;
private String bindLabel;
+ private boolean fastMoveControlsVisible;
+ private boolean moveControlsVisible;
+ private SelectItem[] arrValue;
public void addHtmlPickList(){
ComponentInfo info = ComponentInfo.getInstance();
@@ -45,7 +48,9 @@
this.copyAllControlLabel = "copyAllControlLabel";
this.copyControlLabel = "copyControlLabel";
this.disabled = false;
- this.fastOrderControlsVisible = true;
+ this.moveControlsVisible = true;
+ this.fastMoveControlsVisible = true;
+
this.immediate = false;
this.listsHeight = "400";
this.valueCL = "---";
@@ -63,8 +68,10 @@
this.requiredMessage = "requiredMessage";
this.bindLabel = "Click Binding";
data = new ArrayList<SelectItem>();
- for (int i = 0; i < 10; i++)
+ for (int i = 0; i < 10; i++) {
data.add(new SelectItem("selectItems " + i));
+ arrValue[i] = new SelectItem("Row " + i);
+ }
}
public HtmlPickList getMyPickList() {
@@ -136,14 +143,6 @@
this.disabled = disabled;
}
- public boolean isFastOrderControlsVisible() {
- return fastOrderControlsVisible;
- }
-
- public void setFastOrderControlsVisible(boolean fastOrderControlsVisible) {
- this.fastOrderControlsVisible = fastOrderControlsVisible;
- }
-
public boolean isImmediate() {
return immediate;
}
@@ -261,4 +260,30 @@
bindLabel = myPickList.getClientId(context);
}
+ public boolean isFastMoveControlsVisible() {
+ return fastMoveControlsVisible;
+ }
+
+ public void setFastMoveControlsVisible(boolean fastMoveControlsVisible) {
+ this.fastMoveControlsVisible = fastMoveControlsVisible;
+ }
+
+ public boolean isMoveControlsVisible() {
+ return moveControlsVisible;
+ }
+
+ public void setMoveControlsVisible(boolean moveControlsVisible) {
+ this.moveControlsVisible = moveControlsVisible;
+ }
+
+ public SelectItem[] getArrValue() {
+ return arrValue;
+ }
+
+ public void setArrValue(SelectItem[] arrValue) {
+ this.arrValue = arrValue;
+ }
+
+
+
}
Modified: trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp 2009-04-20 11:01:08 UTC (rev 13680)
+++ trunk/test-applications/jsp/src/main/webapp/PickList/PickList.jsp 2009-04-20 11:02:36 UTC (rev 13681)
@@ -3,7 +3,7 @@
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<f:subview id="pickListSubviewID">
- <rich:pickList id="pickListID" value="#{pickList.value}"
+ <rich:pickList id="pickListID" value="#{pickList.arrValue}"
showButtonsLabel="#{pickList.showButtonLabels}"
valueChangeListener="#{pickList.valueChangeListener}"
controlClass="#{style.controlClass}"
@@ -23,6 +23,9 @@
targetListWidth="#{pickList.targetListWidth}"
required="#{pickList.required}"
requiredMessage="#{pickList.requiredMessage}"
+ moveControlsVisible="#{pickList.moveControlsVisible}"
+ fastMoveControlsVisible="#{pickList.fastMoveControlsVisible}"
+
onclick="#{event.onclick}"
ondblclick="#{event.ondblclick}"
onkeydown="#{event.onkeydown}"
Modified: trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp 2009-04-20 11:01:08 UTC (rev 13680)
+++ trunk/test-applications/jsp/src/main/webapp/PickList/PickListProperty.jsp 2009-04-20 11:02:36 UTC (rev 13681)
@@ -3,7 +3,7 @@
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<f:subview id="pickListPropertySubviewID">
-<h:commandButton value="add test" action="#{pickList.addHtmlPickList}"></h:commandButton>
+ <h:commandButton value="add test" action="#{pickList.addHtmlPickList}"></h:commandButton>
<h:panelGrid columns="2">
<a4j:commandButton reRender="pickListTargenID" value="refresh target"></a4j:commandButton>
<h:dataTable id="pickListTargenID" value="#{pickList.value}"
@@ -52,10 +52,14 @@
<h:outputText value="targetListWidth:"></h:outputText>
<h:inputText value="#{pickList.targetListWidth}" onchange="submit();"></h:inputText>
- <h:outputText value="fastOrderControlsVisible:"></h:outputText>
- <h:selectBooleanCheckbox value="#{pickList.fastOrderControlsVisible}"
+ <h:outputText value="moveControlsVisible:"></h:outputText>
+ <h:selectBooleanCheckbox value="#{pickList.moveControlsVisible}"
onchange="submit();"></h:selectBooleanCheckbox>
+ <h:outputText value="fastMoveControlsVisible:"></h:outputText>
+ <h:selectBooleanCheckbox value="#{pickList.fastMoveControlsVisible}"
+ onchange="submit();"></h:selectBooleanCheckbox>
+
<h:outputText value="rendered:"></h:outputText>
<h:selectBooleanCheckbox value="#{pickList.rendered}"
onchange="submit();"></h:selectBooleanCheckbox>
15 years, 6 months
JBoss Rich Faces SVN: r13680 - trunk/test-applications/realworld2/web/src/main/webapp/stylesheet.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 07:01:08 -0400 (Mon, 20 Apr 2009)
New Revision: 13680
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld.css
Log:
Modified: trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld.css
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld.css 2009-04-20 10:51:10 UTC (rev 13679)
+++ trunk/test-applications/realworld2/web/src/main/webapp/stylesheet/realworld.css 2009-04-20 11:01:08 UTC (rev 13680)
@@ -1,6 +1,6 @@
.main-body {
margin: 0px;
- background: url(../img/shell/page_bg.gif) repeat-x #D7D7D7;
+ background: url(../img/shell/panel_bg.gif) repeat-y #D7D7D7;
height: 100%;
}
@@ -15,9 +15,14 @@
padding: 0px;
}
+.panel-header-bg {
+ background: url(../img/shell/general_panel_header_bg.gif) right top repeat-x;
+}
+
.header-content-div {
height: 79px;
position: relative;
+ background: url(../img/shell/page_bg.gif) repeat-x scroll 0 0;
}
.user-info-div {
@@ -80,6 +85,8 @@
padding: 0px;
border: none;
background-color: transparent;
+
+
}
.body-main-panel-header {
@@ -124,7 +131,7 @@
.avatarUpload .rich-fileupload-list-decor {
width:100%;
-background-color:D7D7D7;
+background-color:#D7D7D7;
border-bottom:0px;
border-left:0px;
border-top:0px;
15 years, 6 months
JBoss Rich Faces SVN: r13679 - trunk/test-applications/realworld2/web/src/main/webapp/layout.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 06:51:10 -0400 (Mon, 20 Apr 2009)
New Revision: 13679
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
Log:
new layout
Modified: trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Rich Faces SVN: r13678 - trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 06:44:26 -0400 (Mon, 20 Apr 2009)
New Revision: 13678
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/createShelf.xhtml
Log:
change default modal panel height
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/createShelf.xhtml
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Rich Faces SVN: r13677 - trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 06:43:34 -0400 (Mon, 20 Apr 2009)
New Revision: 13677
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForAlbum.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForImage.xhtml
Log:
add attachTo
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForAlbum.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForImage.xhtml
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Rich Faces SVN: r13676 - in trunk/test-applications/realworld2/web/src/main/webapp/includes: image and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 06:43:01 -0400 (Mon, 20 Apr 2009)
New Revision: 13676
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumsList.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageList.xhtml
Log:
fix contextMenu location
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumsList.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageList.xhtml
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Rich Faces SVN: r13675 - trunk/test-applications/realworld2/web/src/main/webapp/img/shell.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2009-04-20 06:41:59 -0400 (Mon, 20 Apr 2009)
New Revision: 13675
Added:
trunk/test-applications/realworld2/web/src/main/webapp/img/shell/panel_bg.gif
Log:
Added: trunk/test-applications/realworld2/web/src/main/webapp/img/shell/panel_bg.gif
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/img/shell/panel_bg.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 6 months
JBoss Rich Faces SVN: r13674 - Reports/3.3.1 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2009-04-20 06:05:46 -0400 (Mon, 20 Apr 2009)
New Revision: 13674
Modified:
trunk/test-applications/qa/Test Reports/3.3.1/RFTestReport3.3.1.BETA4.xls
Log:
Modified: trunk/test-applications/qa/Test Reports/3.3.1/RFTestReport3.3.1.BETA4.xls
===================================================================
(Binary files differ)
15 years, 6 months
JBoss Rich Faces SVN: r13673 - trunk/docs/realworld_app_guide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2009-04-20 05:47:42 -0400 (Mon, 20 Apr 2009)
New Revision: 13673
Added:
trunk/docs/realworld_app_guide/en/src/main/docbook/modules/hiw.xml
Log:
Added: trunk/docs/realworld_app_guide/en/src/main/docbook/modules/hiw.xml
===================================================================
--- trunk/docs/realworld_app_guide/en/src/main/docbook/modules/hiw.xml (rev 0)
+++ trunk/docs/realworld_app_guide/en/src/main/docbook/modules/hiw.xml 2009-04-20 09:47:42 UTC (rev 13673)
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter id="patterns" xreflabel="patterns">
+ <?dbhtml filename="getting_started.html"?>
+ <chapterinfo>
+ <keywordset>
+ <keyword>RichFaces</keyword>
+
+ </keywordset>
+ </chapterinfo>
+ <title>How it works</title>
+
+ <section>
+ <title>Used components</title>
+
+ <para>Below there is a list of components used in "Photo album".</para>
+ <table>
+ <title>Components used in "Photo album"</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>a4j:commandLink</entry>
+ <entry>The component is very similar to the <h:commandLink> component, the only difference is that an Ajax form submit is generated on a click and it allows dynamic rerendering after a response comes back. It's not necessary to plug any support into the component, as Ajax support is already built in.</entry>
+ </row>
+ <row>
+ <entry>a4j:commandButton</entry>
+ <entry>The component is very similar to the <h:commandButton> component, the only difference is that an Ajax form submit is generated on a click and it allows dynamic rerendering after a response comes back. It's not necessary to plug any support into the component, as Ajax support is already built in.</entry>
+ </row>
+ <row>
+ <entry>a4j:push</entry>
+ <entry>The component periodically perform Ajax request to server, to simulate 'push' data.</entry>
+ </row>
+ <row>
+ <entry>a4J:poll</entry>
+ <entry>The component allows periodical sending of Ajax requests to a server and is used for a page updating according to a specified time interval.</entry>
+ </row>
+ <row>
+ <entry>rich:calendar</entry>
+ <entry>The component is used for creating monthly calendar elements on a page.</entry>
+ </row>
+ <row>
+ <entry>rich:contextMenu</entry>
+ <entry>The component is used for creation multileveled context menus that are activated after a user defines an event ("onmouseover", "onclick", etc.) on any element on the page.</entry>
+ </row>
+ <row>
+ <entry>rich:dataGrid</entry>
+ <entry>The component to render data as a grid that allows choosing data from a model and obtains built-in support of Ajax updates.</entry>
+ </row>
+ <row>
+ <entry>rich:datascroller</entry>
+ <entry>The component designed for providing the functionality of tables scrolling using Ajax requests.</entry>
+ </row>
+ <row>
+ <entry>rich:fileUpload</entry>
+ <entry>The component designed to perform Ajax-ed files upload to server.</entry>
+ </row>
+ <row>
+ <entry>rich:inplaceInput</entry>
+ <entry>The component is an input component used for displaying and editing data inputted. </entry>
+ </row>
+ <row>
+ <entry>rich:inplaceSelect</entry>
+ <entry>The component is used for creation select based inputs: it shows the value as text in one state and enables editing the value, providing a list of options in another state.</entry>
+ </row>
+ <row>
+ <entry>rich:mediaOutput</entry>
+ <entry>The component implements one of the basic features specified in the framework. The component is a facility for generating images, video, sounds and other binary resources defined by you on-the-fly.</entry>
+ </row>
+ <row>
+ <entry>rich:modalPanel</entry>
+ <entry>The component implements a modal dialog window. All operations in the main application window are locked out while this window is active. Opening and closing the window is done through client JavaScript code.</entry>
+ </row>
+ <row>
+ <entry>rich:progressBar</entry>
+ <entry>The component is designed for displaying a progress bar which shows the current status of the process. </entry>
+ </row>
+ <row>
+ <entry>rich:tree</entry>
+ <entry>The component is designed for hierarchical data presentation and is applied for building a tree structure with a drag-and-drop capability. The component also uses built-in drag and drop.</entry>
+ </row>
+
+
+ </tbody>
+ </tgroup>
+ </table>
+ </section>
+
+</chapter>
15 years, 6 months