JBoss Rich Faces SVN: r7258 - trunk/ui/toolBar/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-03-26 10:11:52 -0400 (Wed, 26 Mar 2008)
New Revision: 7258
Modified:
trunk/ui/toolBar/src/main/config/component/toolBar.xml
Log:
http://jira.jboss.com/jira/browse/RF-2190
descriptions are added
Modified: trunk/ui/toolBar/src/main/config/component/toolBar.xml
===================================================================
--- trunk/ui/toolBar/src/main/config/component/toolBar.xml 2008-03-26 14:00:15 UTC (rev 7257)
+++ trunk/ui/toolBar/src/main/config/component/toolBar.xml 2008-03-26 14:11:52 UTC (rev 7258)
@@ -90,58 +90,58 @@
</property>
&ui_component_attributes;
- &html_style_attributes;
-
- <property>
- <name>onitemkeydown</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemkeypress</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemkeyup</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemclick</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemdblclick</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemmousedown</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemmousemove</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemmouseover</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemmouseout</name>
- <classname>java.lang.String</classname>
- <description></description>
- </property>
- <property>
- <name>onitemmouseup</name>
- <classname>java.lang.String</classname>
- <description></description>
+ &html_style_attributes;
+
+ <property>
+ <name>onitemkeydown</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a key is pressed down on an item</description>
</property>
+ <property>
+ <name>onitemkeypress</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a key is pressed and released on an item</description>
+ </property>
+ <property>
+ <name>onitemkeyup</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a key is released on an item</description>
+ </property>
+ <property>
+ <name>onitemclick</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a pointer button is clicked on an item</description>
+ </property>
+ <property>
+ <name>onitemdblclick</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a pointer button is double-clicked on an item</description>
+ </property>
+ <property>
+ <name>onitemmousedown</name>
+ <classname>java.lang.String</classname>
+ <description></description>
+ </property>
+ <property>
+ <name>onitemmousemove</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a pointer is moved on an item</description>
+ </property>
+ <property>
+ <name>onitemmouseover</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a pointer is moved onto an item</description>
+ </property>
+ <property>
+ <name>onitemmouseout</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: a script expression; a pointer is moved away from an item</description>
+ </property>
+ <property>
+ <name>onitemmouseup</name>
+ <classname>java.lang.String</classname>
+ <description>HTML: script expression; a pointer button is released on an item</description>
+ </property>
</component>
<component>
@@ -204,7 +204,7 @@
</property>
&ui_component_attributes;
- &html_style_attributes;
+ &html_style_attributes;
&html_events;
</component>
</components>
\ No newline at end of file
16 years, 9 months
JBoss Rich Faces SVN: r7257 - in trunk/samples/richfaces-demo/src/main: resources/org/richfaces/demo/common and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-03-26 10:00:15 -0400 (Wed, 26 Mar 2008)
New Revision: 7257
Added:
trunk/samples/richfaces-demo/src/main/webapp/images/cn_FileUpload.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_PickList.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_ProgressBar.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_TableFiltering.gif
trunk/samples/richfaces-demo/src/main/webapp/images/cn_TableSorting.gif
trunk/samples/richfaces-demo/src/main/webapp/images/ico_FileUpload.gif
trunk/samples/richfaces-demo/src/main/webapp/images/ico_TableFiltering.gif
trunk/samples/richfaces-demo/src/main/webapp/images/ico_TableSorting.gif
trunk/samples/richfaces-demo/src/main/webapp/images/ico_pickList.gif
trunk/samples/richfaces-demo/src/main/webapp/images/ico_progressBar.gif
Modified:
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/File.java
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml
trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/web.xml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/examples/fileUpload.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/usage.xhtml
Log:
new icons
File upload example finished
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/File.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/File.java 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/File.java 2008-03-26 14:00:15 UTC (rev 7257)
@@ -4,6 +4,13 @@
private String Name;
private long length;
+ private byte[] data;
+ public byte[] getData() {
+ return data;
+ }
+ public void setData(byte[] data) {
+ this.data = data;
+ }
public String getName() {
return Name;
}
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java 2008-03-26 14:00:15 UTC (rev 7257)
@@ -4,6 +4,7 @@
package org.richfaces.demo.fileUpload;
import java.io.IOException;
+import java.io.OutputStream;
import java.util.ArrayList;
import org.richfaces.event.UploadEvent;
@@ -16,7 +17,8 @@
public class FileUploadBean{
private ArrayList<File> files = new ArrayList<File>();
-
+ private int uploadsAvailable = 5;
+ private boolean autoUpload = false;
public int getSize() {
if (getFiles().size()>0){
return getFiles().size();
@@ -29,14 +31,25 @@
public FileUploadBean() {
}
+ public void paint(OutputStream stream, Object object) throws IOException {
+ stream.write(getFiles().get((Integer)object).getData());
+ }
public void listener(UploadEvent event) throws IOException{
UploadItem item = event.getUploadItem();
File file = new File();
file.setLength(item.getData().length);
file.setName(item.getFileName());
+ file.setData(item.getData());
files.add(file);
+ uploadsAvailable--;
}
+ public String clearUploadData() {
+ files.clear();
+ setUploadsAvailable(5);
+ return null;
+ }
+
public ArrayList<File> getFiles() {
return files;
}
@@ -45,4 +58,20 @@
this.files = files;
}
+ public int getUploadsAvailable() {
+ return uploadsAvailable;
+ }
+
+ public void setUploadsAvailable(int uploadsAvailable) {
+ this.uploadsAvailable = uploadsAvailable;
+ }
+
+ public boolean isAutoUpload() {
+ return autoUpload;
+ }
+
+ public void setAutoUpload(boolean autoUpload) {
+ this.autoUpload = autoUpload;
+ }
+
}
Modified: trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
--- trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2008-03-26 14:00:15 UTC (rev 7257)
@@ -69,15 +69,15 @@
portlet= ajaxMisc, Ajax Portlet, /images/ico_common.gif, /images/cn_AjaxPortlet.gif, RichFacesComponentsLibrary.html#portlet, jbossajax4jsf/freezone/docs/tlddoc/a4j/portlet.html, jbossajax4jsf/freezone/docs/apidoc/org/ajax4jsf/ajax/UIPortlet.html, /richfaces/portlet.jsf
effect= richMisc, Effect, /images/ico_common.gif, /images/cn_Effect.gif, RichFacesComponentsLibrary.html#effect, jbossrichfaces/freezone/docs/tlddoc/rich/effect.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIEffect.html, /richfaces/effect.jsf
contextMenu= richMenu, Context Menu, /images/ico_ContextMenu.gif, /images/cn_contextMenu.gif, RichFacesComponentsLibrary.html\#contextMenu, jbossrichfaces/freezone/docs/tlddoc/rich/contextMenu.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIContextMenu.html, /richfaces/contextMenu.jsf
-componentControl= richMisc, Component Control, /images/ico_common.gif, \t\t/images/cn_componentControl.gif, RichFacesComponentsLibrary.html\#componentControl, jbossrichfaces/freezone/docs/tlddoc/rich/componentControl.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIcomponentControl.html, /richfaces/componentControl.jsf
-orderingList= richSelect, Ordering List, /images/ico_OrderingList.gif, \t/images/cn_orderingList.gif, RichFacesComponentsLibrary.html\#orderingList, jbossrichfaces/freezone/docs/tlddoc/rich/orderingList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIorderingList.html, \t\t/richfaces/orderingList.jsf
-listShuttle= richSelect, List Shuttle, /images/ico_ListShuttle.gif, /images/cn_listShuttle.gif, RichFacesComponentsLibrary.html\#listShuttle, jbossrichfaces/freezone/docs/tlddoc/rich/listShuttle.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIlistShuttle.html, \t\t/richfaces/listShuttle.jsf
-pickList= richSelect, Pick List, /images/ico_DataTable.gif, /images/cn_listShuttle.gif, RichFacesComponentsLibrary.html\#pickList, jbossrichfaces/freezone/docs/tlddoc/rich/pickList.html, \t\tjbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIpickList.html, \t\t\t\t/richfaces/pickList.jsf
-progressBar= richOutputs, Progress Bar, /images/ico_DataTable.gif, /images/cn_listShuttle.gif, RichFacesComponentsLibrary.html\#progressBar, jbossrichfaces/freezone/docs/tlddoc/rich/progressBar.html, \t\tjbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIprogressBar.html, \t/richfaces/progressBar.jsf
-comboBox= richInputs, Combo Box, /images/ico_ComboBox.gif, \t\t/images/cn_ComboBox.gif, RichFacesComponentsLibrary.html\#comboBox, jbossrichfaces/freezone/docs/tlddoc/rich/comboBox.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIcomboBox.html, \t\t\t\t\t/richfaces/comboBox.jsf
+componentControl=richMisc, Component Control, \t/images/ico_common.gif, \t\t/images/cn_componentControl.gif, RichFacesComponentsLibrary.html\#componentControl, jbossrichfaces/freezone/docs/tlddoc/rich/componentControl.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIcomponentControl.html, /richfaces/componentControl.jsf
+orderingList=richSelect, Ordering List, \t\t/images/ico_OrderingList.gif, \t/images/cn_orderingList.gif, RichFacesComponentsLibrary.html\#orderingList, jbossrichfaces/freezone/docs/tlddoc/rich/orderingList.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIorderingList.html, \t\t/richfaces/orderingList.jsf
+listShuttle=richSelect, List Shuttle, \t\t/images/ico_ListShuttle.gif, /images/cn_listShuttle.gif, RichFacesComponentsLibrary.html\#listShuttle, jbossrichfaces/freezone/docs/tlddoc/rich/listShuttle.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIlistShuttle.html, \t\t/richfaces/listShuttle.jsf
+pickList=richSelect, Pick List, \t\t\t/images/ico_pickList.gif, /images/cn_PickList.gif, RichFacesComponentsLibrary.html\#pickList, jbossrichfaces/freezone/docs/tlddoc/rich/pickList.html, \t\tjbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIpickList.html, \t\t\t\t/richfaces/pickList.jsf
+progressBar=richOutputs, Progress Bar, \t\t/images/ico_progressBar.gif, /images/cn_ProgressBar.gif, RichFacesComponentsLibrary.html\#progressBar, jbossrichfaces/freezone/docs/tlddoc/rich/progressBar.html, \t\tjbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIprogressBar.html, \t/richfaces/progressBar.jsf
+comboBox=richInputs, Combo Box, \t\t/images/ico_ComboBox.gif, \t\t/images/cn_ComboBox.gif, RichFacesComponentsLibrary.html\#comboBox, jbossrichfaces/freezone/docs/tlddoc/rich/comboBox.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIcomboBox.html, \t\t\t\t\t/richfaces/comboBox.jsf
inplaceInput= richInputs, Inplace Input, /images/ico_InplaceInput.gif, \t\t/images/cn_InplaceInput.gif, RichFacesComponentsLibrary.html\#inplaceInput, jbossrichfaces/freezone/docs/tlddoc/rich/inplaceInput.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIinplaceInput.html, \t\t\t\t\t/richfaces/inplaceInput.jsf
inplaceSelect= richInputs, Inplace Select, /images/ico_InplaceSelect.gif, \t\t/images/cn_InplaceSelect.gif, RichFacesComponentsLibrary.html\#inplaceSelect, jbossrichfaces/freezone/docs/tlddoc/rich/inplaceSelect.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIinplaceSelect.html, \t\t\t\t\t/richfaces/inplaceSelect.jsf
-sorting= richDataIterators, Table Sorting, /images/ico_DataTable.gif, \t\t/images/cn_DataTable.gif, RichFacesComponentsLibrary.html\#dataTable, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIdataTable.html, \t\t\t\t\t/richfaces/sortingFeature.jsf
-filtering= richDataIterators, Table Filtering, /images/ico_DataTable.gif, \t\t/images/cn_DataTable.gif, RichFacesComponentsLibrary.html\#dataTable, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIdataTable.html, \t\t\t\t\t/richfaces/filteringFeature.jsf
-columns = richDataIterators, Columns, /images/ico_columns.gif, \t\t/images/cn_Columns.gif, \t\t\tRichFacesComponentsLibrary.html\#columns, jbossrichfaces/freezone/docs/tlddoc/rich/columns.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIcolumns.html, \t\t\t\t\t/richfaces/columns.jsf
-fileUpload = richInputs, File Upload, /images/ico_FileUpload.gif, \t\t/images/cn_FileUpload.gif, \t\t\tRichFacesComponentsLibrary.html\#fileUpload, jbossrichfaces/freezone/docs/tlddoc/rich/fileUpload.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/fileUpload.jsf
\ No newline at end of file
+sorting=richDataIterators, Table Sorting, \t/images/ico_TableSorting.gif, \t\t/images/cn_TableSorting.gif, RichFacesComponentsLibrary.html\#dataTable, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIdataTable.html, \t\t\t\t\t/richfaces/sortingFeature.jsf
+filtering=richDataIterators, Table Filtering, \t/images/ico_TableFiltering.gif, \t\t/images/cn_TableFiltering.gif, RichFacesComponentsLibrary.html\#dataTable, jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIdataTable.html, \t\t\t\t\t/richfaces/filteringFeature.jsf
+columns =richDataIterators, \t Columns, \t\t\t/images/ico_columns.gif, \t\t/images/cn_Columns.gif, \t\t\tRichFacesComponentsLibrary.html\#columns, jbossrichfaces/freezone/docs/tlddoc/rich/columns.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIcolumns.html, \t\t\t\t\t/richfaces/columns.jsf
+fileUpload =richInputs, \t File Upload, \t\t/images/ico_FileUpload.gif, \t\t/images/cn_FileUpload.gif, \t\t\tRichFacesComponentsLibrary.html\#fileUpload, jbossrichfaces/freezone/docs/tlddoc/rich/fileUpload.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/fileUpload.jsf
\ No newline at end of file
Modified: trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml 2008-03-26 14:00:15 UTC (rev 7257)
@@ -296,7 +296,7 @@
<managed-bean>
<managed-bean-name>fileUploadBean</managed-bean-name>
<managed-bean-class>org.richfaces.demo.fileUpload.FileUploadBean</managed-bean-class>
- <managed-bean-scope>request</managed-bean-scope>
+ <managed-bean-scope>session</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>sortingBean</managed-bean-name>
Modified: trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/web.xml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/web.xml 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/web.xml 2008-03-26 14:00:15 UTC (rev 7257)
@@ -71,7 +71,7 @@
</init-param>
<init-param>
<param-name>maxRequestSize</param-name>
- <param-value>20000000</param-value>
+ <param-value>1000000</param-value>
</init-param>
</filter>
<filter-mapping>
Added: trunk/samples/richfaces-demo/src/main/webapp/images/cn_FileUpload.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/cn_FileUpload.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/cn_PickList.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/cn_PickList.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/cn_ProgressBar.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/cn_ProgressBar.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/cn_TableFiltering.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/cn_TableFiltering.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/cn_TableSorting.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/cn_TableSorting.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/ico_FileUpload.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/ico_FileUpload.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/ico_TableFiltering.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/ico_TableFiltering.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/ico_TableSorting.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/ico_TableSorting.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/ico_pickList.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/ico_pickList.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/samples/richfaces-demo/src/main/webapp/images/ico_progressBar.gif
===================================================================
(Binary files differ)
Property changes on: trunk/samples/richfaces-demo/src/main/webapp/images/ico_progressBar.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/examples/fileUpload.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/examples/fileUpload.xhtml 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/examples/fileUpload.xhtml 2008-03-26 14:00:15 UTC (rev 7257)
@@ -4,44 +4,55 @@
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
-
+
<style>
- .top{
- vertical-align:top;
- }
- .info{
- height:210px;
- overflow:auto;
- }
- </style>
-
- <a4j:form>
- <a4j:keepAlive beanName="fileUploadBean" ajaxOnly="false"/>
+.top {
+ vertical-align: top;
+}
+
+.info {
+ height: 210px;
+ overflow: auto;
+}
+</style>
+
+ <h:form>
<h:panelGrid columns="2" columnClasses="top,top">
<rich:fileUpload fileUploadListener="#{fileUploadBean.listener}"
- maxFilesQuantity="5" reRender="table">
- <a4j:support event="onuploadcomplete" reRender="table"></a4j:support>
+ maxFilesQuantity="#{fileUploadBean.uploadsAvailable}"
+ reRender="table" id="upload"
+ immediateUpload="#{fileUploadBean.autoUpload}"
+ acceptedTypes="jpg, gif, png, bmp">
+ <a4j:support event="onuploadcomplete" reRender="info" />
</rich:fileUpload>
-
- <rich:panel bodyClass="info" id="table">
- <f:facet name="header">
- <h:outputText value="Uploaded Files Info" />
- </f:facet>
- <h:outputText value="No files currently uploaded" rendered="#{fileUploadBean.size==0}"></h:outputText>
- <rich:dataGrid columns="1" value="#{fileUploadBean.files}"
- var="file">
- <rich:panel>
- <h:panelGrid columns="2">
+ <h:panelGroup id="info">
+ <rich:panel bodyClass="info">
+ <f:facet name="header">
+ <h:outputText value="Uploaded Files Info" />
+ </f:facet>
+ <h:outputText value="No files currently uploaded"
+ rendered="#{fileUploadBean.size==0}" />
+ <rich:dataGrid columns="1" value="#{fileUploadBean.files}"
+ var="file" rowKeyVar="row">
+ <rich:panel>
<h:panelGrid columns="2">
- <h:outputText value="File Name:" />
- <h:outputText value="#{file.name}" />
- <h:outputText value="File Length(bytes):" />
- <h:outputText value="#{file.length}" />
+ <a4j:mediaOutput element="img" mimeType="image/jpeg"
+ createContent="#{fileUploadBean.paint}" value="#{row}"
+ style="width:50px; height:50px;" />
+ <h:panelGrid columns="2">
+ <h:outputText value="File Name:" />
+ <h:outputText value="#{file.name}" />
+ <h:outputText value="File Length(bytes):" />
+ <h:outputText value="#{file.length}" />
+ </h:panelGrid>
</h:panelGrid>
- </h:panelGrid>
- </rich:panel>
- </rich:dataGrid>
- </rich:panel>
+ </rich:panel>
+ </rich:dataGrid>
+ </rich:panel>
+ <a4j:commandButton action="#{fileUploadBean.clearUploadData}"
+ reRender="info, upload" value="Clear Uploaded Data"
+ rendered="#{fileUploadBean.size>0}" />
+ </h:panelGroup>
</h:panelGrid>
- </a4j:form>
+ </h:form>
</ui:composition>
\ No newline at end of file
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/usage.xhtml 2008-03-26 13:34:11 UTC (rev 7256)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/usage.xhtml 2008-03-26 14:00:15 UTC (rev 7257)
@@ -8,8 +8,15 @@
<ui:composition template="/templates/component-sample.xhtml">
<ui:define name="sample">
+ <p><b>
+ rich:fileUpload</b> is a component which provides files upload functionality and
+ extends functionality of standard <i>input </i>with <i>type=file</i>.
+ </p>
<p>
- SHORT DESCRIPTION
+ Next example shows you <b>File Upload</b> which allows you to upload five pictures to server.
+ Files count allowed to upload managed with <b>maxFilesQuantity </b>attribute.
+ Every uploaded file should be managed through <b>fileUploadListener </b>which called after
+ every single file upload finished.
</p>
<div class="sample-container" >
<ui:include src="/richfaces/fileUpload/examples/fileUpload.xhtml"/>
@@ -17,9 +24,42 @@
<ui:param name="sourcepath" value="/richfaces/fileUpload/examples/fileUpload.xhtml"/>
</ui:include>
</div>
- <p>
- DESCRIPTION
- </p>
+ <fieldset>
+ <legend><b>Details of Usage</b></legend>
+ <p>
+ File upload could works in <b>automatic upload</b> mode. You should just define
+ <b>immediateUpload </b>upload attribute as <b>true </b>(<i>false by default</i>) and upload will be started
+ just after file added to list. But you could freely manage the list (add
+ or remove some files from list while upload performed)
+ </p>
+ <h:outputText value="Turn Automatic upload on:"/>
+ <h:form>
+ <h:selectBooleanCheckbox value="#{fileUploadBean.autoUpload}">
+ <a4j:support event="onclick" reRender="upload"/>
+ </h:selectBooleanCheckbox>
+ </h:form>
+ <p>
+ In this example file types restricted to jpg, gif, png and bmp files using <b>acceptedTypes </b>attribute.
+ </p>
+ <p>
+ FileUpload uses two init parameters which should be defined in Filter definition
+ in web.xml:
+ </p>
+ <ul>
+ <li>
+ <b>createTempFiles</b> boolean attribute which defines if the uploaded files
+ will be stored in temporary files or available in listener just as byte[] data
+ (false for this example).
+ </li>
+ <li>
+ <b>maxRequestSize</b> attribute defines max size in bytes of the uploaded files
+ (1000000 for this example).
+ </li>
+ </ul>
+ <p>
+
+ </p>
+ </fieldset>
</ui:define>
</ui:composition>
16 years, 9 months
JBoss Rich Faces SVN: r7256 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2008-03-26 09:34:11 -0400 (Wed, 26 Mar 2008)
New Revision: 7256
Modified:
trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml
Log:
http://jira.jboss.com/jira/browse/RF-1226
Hover classed added
Modified: trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml 2008-03-26 12:54:41 UTC (rev 7255)
+++ trunk/docs/userguide/en/src/main/docbook/included/inplaceInput.xml 2008-03-26 13:34:11 UTC (rev 7256)
@@ -554,6 +554,11 @@
<entry>Defines styles for the "View" state</entry>
</row>
+ <row>
+ <entry>rich-inplace-input-view-hover</entry>
+ <entry>Defines styles for hovered text in the "View" state </entry>
+ </row>
+
</tbody>
</tgroup>
</table>
@@ -597,7 +602,12 @@
<entry>rich-inplace-changed</entry>
<entry>Defines styles for the "Changed" state</entry>
</row>
+ <row>
+ <entry> rich-inplace-input-changed-hover </entry>
+ <entry>Defines styles for the hovered text in the "Changed" state</entry>
+ </row>
+ rich-inplace-input-changed-hover
</tbody>
</tgroup>
</table>
@@ -624,8 +634,11 @@
<entry>.rich-inplace-control-press</entry>
<entry>Defines styles for the controls when either of the buttons is pressed</entry>
</row>
-
<row>
+ <entry>.rich-inplace-shadow-size</entry>
+ <entry>Defines size of the shadow</entry>
+ </row>
+ <row>
<entry>rich-inplace-shadow-tl</entry>
<entry>Defines styles for the shadow in the top left corner </entry>
</row>
@@ -718,7 +731,7 @@
<section>
<title>Relevant Resources Links</title>
<para>
- <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/progressbar.jsf?c=pro...">Here</ulink>
+ <ulink url="http://livedemo.exadel.com/richfaces-demo/richfaces/progressbar.jsf?c=inp...">Here</ulink>
you can see the example of <emphasis role="bold">
<property><rich:inplaceIput></property>
</emphasis> usage and sources for the given example. </para>
16 years, 9 months
JBoss Rich Faces SVN: r7255 - in trunk/ui/progressBAR/src/main: java/org/richfaces/renderkit and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-03-26 08:54:41 -0400 (Wed, 26 Mar 2008)
New Revision: 7255
Modified:
trunk/ui/progressBAR/src/main/java/org/richfaces/component/UIProgressBar.java
trunk/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java
trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
Log:
RF-2343
Modified: trunk/ui/progressBAR/src/main/java/org/richfaces/component/UIProgressBar.java
===================================================================
--- trunk/ui/progressBAR/src/main/java/org/richfaces/component/UIProgressBar.java 2008-03-26 12:53:25 UTC (rev 7254)
+++ trunk/ui/progressBAR/src/main/java/org/richfaces/component/UIProgressBar.java 2008-03-26 12:54:41 UTC (rev 7255)
@@ -7,6 +7,7 @@
package org.richfaces.component;
import java.math.BigDecimal;
+import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
@@ -137,7 +138,7 @@
}
}
}
-
+
/**
* Returns ajax response data
*
Modified: trunk/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java
===================================================================
--- trunk/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java 2008-03-26 12:53:25 UTC (rev 7254)
+++ trunk/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java 2008-03-26 12:54:41 UTC (rev 7255)
@@ -54,7 +54,7 @@
@Override
protected void doDecode(FacesContext facesContext, UIComponent uiComponent) {
new AjaxEvent(uiComponent).queue();
- uiComponent.queueEvent(new ActionEvent(uiComponent));
+ //uiComponent.queueEvent(new ActionEvent(uiComponent));
}
/**
@@ -290,6 +290,7 @@
Integer interval = new Integer(progressBar.getInterval());
options.put("pollId", clientId);
options.put("pollinterval", interval);
+ options.put("ajaxSingle", clientId);
if (progressBar.getAttributes().containsKey("ignoreDupResponses")) {
options.put("ignoreDupResponses", progressBar.getAttributes().get(
"ignoreDupResponses"));
Modified: trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
===================================================================
--- trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-03-26 12:53:25 UTC (rev 7254)
+++ trunk/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-03-26 12:54:41 UTC (rev 7255)
@@ -232,6 +232,7 @@
options['parameters'][this.id] = this.id;
options['parameters']['forcePercent'] = state;
options['actionUrl'] = this.options.actionUrl;
+ options['ajaxSingle'] = this.id;
if (oncomplete) {
options['oncomplete'] = oncomplete;
}
16 years, 9 months
JBoss Rich Faces SVN: r7254 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: inputNumberSlider and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-03-26 08:53:25 -0400 (Wed, 26 Mar 2008)
New Revision: 7254
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/comboBox/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/examples/sliderUsage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/usage.xhtml
Log:
Demo site: ComboBox, InputNumberSlider, InputNumberSpinner demos layout correction
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/comboBox/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/comboBox/usage.xhtml 2008-03-26 12:46:54 UTC (rev 7253)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/comboBox/usage.xhtml 2008-03-26 12:53:25 UTC (rev 7254)
@@ -23,38 +23,53 @@
When using selectItem(s) for suggestion definition you should define only value
of the selectItem. It is used both for displaying and storing.
</p>
- <p>
- The first simple example shows a declarative definition with f:selectItem components.
- Just enter <b>"s"</b> letter or click icon in order to trigger the suggestion.
- </p>
- <div class="sample-container" >
- <ui:include src="/richfaces/comboBox/examples/simple.xhtml"/>
- <ui:include src="/templates/include/sourceview.xhtml">
- <ui:param name="sourcepath" value="/richfaces/comboBox/examples/simple.xhtml"/>
- </ui:include>
- </div>
- <p>
- The next example uses a simple select Items list to provide suggestions. Also comboBox
- does not select the first item by default after a list appears (<b>selectFirstOnUpdate </b>attribute
- usage). Just enter any letter or click an icon in order to trigger the suggestion.
- </p>
- <div class="sample-container" >
- <ui:include src="/richfaces/comboBox/examples/selectItems.xhtml"/>
- <ui:include src="/templates/include/sourceview.xhtml">
- <ui:param name="sourcepath" value="/richfaces/comboBox/examples/selectItems.xhtml"/>
- </ui:include>
- </div>
- <p>
- The next definition example shows how to define a suggestions list using a simple String list.
- And how to turn on an input suggestion feature with <b>directInputSuggestions </b>attribute.
- Enter any letter or click an icon in order to trigger the suggestion.
- </p>
- <div class="sample-container" >
- <ui:include src="/richfaces/comboBox/examples/collection.xhtml"/>
- <ui:include src="/templates/include/sourceview.xhtml">
- <ui:param name="sourcepath" value="/richfaces/comboBox/examples/collection.xhtml"/>
- </ui:include>
- </div>
+
+ <fieldset class="demo_fieldset">
+ <legend class="demo_legend">Simple Combo Box with predefined suggestions</legend>
+ <div class="sample-container" >
+ <p>
+ The first simple example shows a declarative definition with f:selectItem components.
+ Just enter <b>"s"</b> letter or click icon in order to trigger the suggestion.
+ </p>
+ <br/>
+ <ui:include src="/richfaces/comboBox/examples/simple.xhtml"/>
+ <ui:include src="/templates/include/sourceview.xhtml">
+ <ui:param name="sourcepath" value="/richfaces/comboBox/examples/simple.xhtml"/>
+ </ui:include>
+ </div>
+ </fieldset>
+
+ <fieldset class="demo_fieldset">
+ <legend class="demo_legend">Combo Box with dynamic suggestions list</legend>
+ <div class="sample-container">
+ <p>
+ The next example uses a simple select Items list to provide suggestions. Also comboBox
+ does not select the first item by default after a list appears (<b>selectFirstOnUpdate </b>attribute
+ usage). Just enter any letter or click an icon in order to trigger the suggestion.
+ </p>
+ <br/>
+ <ui:include src="/richfaces/comboBox/examples/selectItems.xhtml"/>
+ <ui:include src="/templates/include/sourceview.xhtml">
+ <ui:param name="sourcepath" value="/richfaces/comboBox/examples/selectItems.xhtml"/>
+ </ui:include>
+ </div>
+ </fieldset>
+
+ <fieldset class="demo_fieldset">
+ <legend class="demo_legend">Combo Box with a simple String list as suggestions list</legend>
+ <div class="sample-container">
+ <p>
+ The next definition example shows how to define a suggestions list using a simple String list.
+ And how to turn on an input suggestion feature with <b>directInputSuggestions </b>attribute.
+ Enter any letter or click an icon in order to trigger the suggestion.
+ </p>
+ <br/>
+ <ui:include src="/richfaces/comboBox/examples/collection.xhtml"/>
+ <ui:include src="/templates/include/sourceview.xhtml">
+ <ui:param name="sourcepath" value="/richfaces/comboBox/examples/collection.xhtml"/>
+ </ui:include>
+ </div>
+ </fieldset>
</ui:define>
</ui:composition>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/examples/sliderUsage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/examples/sliderUsage.xhtml 2008-03-26 12:46:54 UTC (rev 7253)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/examples/sliderUsage.xhtml 2008-03-26 12:53:25 UTC (rev 7254)
@@ -8,15 +8,15 @@
<a4j:form ajaxSubmit="true">
<p>
Here is an example of default inputNumberSlider:
- <rich:inputNumberSlider value="50"/>
</p>
+ <rich:inputNumberSlider value="50"/>
<p>
Here is "minimalistic" input:
- <rich:inputNumberSlider value="50" showInput="false" enableManualInput="false" showBoundaryValues="false" showToolTip="false"/>
</p>
+ <rich:inputNumberSlider value="50" showInput="false" enableManualInput="false" showBoundaryValues="false" showToolTip="false"/>
<p>
Another variation of input:
- <rich:inputNumberSlider value="500" width="500" maxValue="1000" step="50" showToolTip="false" />
</p>
+ <rich:inputNumberSlider value="500" width="500" maxValue="1000" step="50" showToolTip="false" />
</a4j:form>
</ui:composition>
\ No newline at end of file
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/usage.xhtml 2008-03-26 12:46:54 UTC (rev 7253)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSlider/usage.xhtml 2008-03-26 12:53:25 UTC (rev 7254)
@@ -10,12 +10,16 @@
<p>
InputNumberSlider is a highly customizable component that is used to define numeric input in a given range. You can use a slider or just type some text into an input field.
</p>
- <div class="sample-container" >
- <ui:include src="/richfaces/inputNumberSlider/examples/sliderUsage.xhtml"/>
- <ui:include src="/templates/include/sourceview.xhtml">
- <ui:param name="sourcepath" value="/richfaces/inputNumberSlider/examples/sliderUsage.xhtml"/>
- </ui:include>
- </div>
+ <fieldset class="demo_fieldset">
+ <legend class="demo_legend">Examples</legend>
+ <div class="sample-container">
+ <ui:include src="/richfaces/inputNumberSlider/examples/sliderUsage.xhtml"/>
+ <br/>
+ <ui:include src="/templates/include/sourceview.xhtml">
+ <ui:param name="sourcepath" value="/richfaces/inputNumberSlider/examples/sliderUsage.xhtml"/>
+ </ui:include>
+ </div>
+ </fieldset>
</ui:define>
</ui:composition>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml 2008-03-26 12:46:54 UTC (rev 7253)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml 2008-03-26 12:53:25 UTC (rev 7254)
@@ -7,12 +7,12 @@
<a4j:form ajaxSubmit="true">
<p>
Here is an example of default inputNumberSpinner:
- <rich:inputNumberSpinner value="50"/>
</p>
+ <rich:inputNumberSpinner value="50"/>
<p>
Here is one more inputNumberSpinner:
- <rich:inputNumberSpinner value="50" step="10"/>
</p>
+ <rich:inputNumberSpinner value="50" step="10"/>
</a4j:form>
</ui:composition>
\ No newline at end of file
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/usage.xhtml 2008-03-26 12:46:54 UTC (rev 7253)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/inputNumberSpinner/usage.xhtml 2008-03-26 12:53:25 UTC (rev 7254)
@@ -10,12 +10,16 @@
<p>
InputNumberSpinner is a highly customizable component that is used to define a numeric input in a given range. A user can use a spinner control or just type some text into an input field.
</p>
- <div class="sample-container" >
- <ui:include src="/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml"/>
- <ui:include src="/templates/include/sourceview.xhtml">
- <ui:param name="sourcepath" value="/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml"/>
- </ui:include>
- </div>
+ <fieldset class="demo_fieldset">
+ <legend class="demo_legend">Examples</legend>
+ <div class="sample-container" >
+ <ui:include src="/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml"/>
+ <br/>
+ <ui:include src="/templates/include/sourceview.xhtml">
+ <ui:param name="sourcepath" value="/richfaces/inputNumberSpinner/examples/spinnerUsage.xhtml"/>
+ </ui:include>
+ </div>
+ </fieldset>
</ui:define>
</ui:composition>
</html>
16 years, 9 months
JBoss Rich Faces SVN: r7253 - in trunk/ui/scrollableDataTable/src/main: java/org/richfaces/component and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2008-03-26 08:46:54 -0400 (Wed, 26 Mar 2008)
New Revision: 7253
Modified:
trunk/ui/scrollableDataTable/src/main/config/component/scrollable-data-table.xml
trunk/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java
trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java
Log:
http://jira.jboss.com/jira/browse/RF-2771
Modified: trunk/ui/scrollableDataTable/src/main/config/component/scrollable-data-table.xml
===================================================================
--- trunk/ui/scrollableDataTable/src/main/config/component/scrollable-data-table.xml 2008-03-26 12:45:23 UTC (rev 7252)
+++ trunk/ui/scrollableDataTable/src/main/config/component/scrollable-data-table.xml 2008-03-26 12:46:54 UTC (rev 7253)
@@ -260,6 +260,15 @@
&ui_data_attributes;
&spec_table_attributes;
&html_style_attributes;
+
+ <property hidden="true">
+ <name>limitToList</name>
+ <classname>boolean</classname>
+ </property>
+ <property hidden="true">
+ <name>ajaxSingle</name>
+ <classname>boolean</classname>
+ </property>
</component>
<renderer generate="true">
Modified: trunk/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java
===================================================================
--- trunk/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java 2008-03-26 12:45:23 UTC (rev 7252)
+++ trunk/ui/scrollableDataTable/src/main/java/org/richfaces/component/UIScrollableDataTable.java 2008-03-26 12:46:54 UTC (rev 7253)
@@ -410,4 +410,30 @@
setScrollPos("0,0," + rows);
}
}
+
+
+ //RF-2771
+ public boolean isLimitToList() {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public void setLimitToList(boolean submitForm) {
+ // TODO Auto-generated method stub
+
+ }
+
+ public boolean isAjaxSingle() {
+ // TODO Auto-generated method stub
+ return false;
+ }
+
+ public void setAjaxSingle(boolean single) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+
+
}
Modified: trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java
===================================================================
--- trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java 2008-03-26 12:45:23 UTC (rev 7252)
+++ trunk/ui/scrollableDataTable/src/main/java/org/richfaces/renderkit/html/ScrollableDataTableBaseRenderer.java 2008-03-26 12:46:54 UTC (rev 7253)
@@ -448,13 +448,11 @@
@Override
protected InternetResource[] getScripts() {
- // TODO Auto-generated method stub
return composite.getScripts();
}
@Override
protected InternetResource[] getStyles() {
- // TODO Auto-generated method stub
return composite.getStyles();
}
16 years, 9 months
JBoss Rich Faces SVN: r7252 - trunk/ui/tooltip/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-03-26 08:45:23 -0400 (Wed, 26 Mar 2008)
New Revision: 7252
Modified:
trunk/ui/tooltip/src/main/config/component/toolTip.xml
Log:
http://jira.jboss.com/jira/browse/RF-730 - Attribute tables language correction
Modified: trunk/ui/tooltip/src/main/config/component/toolTip.xml
===================================================================
--- trunk/ui/tooltip/src/main/config/component/toolTip.xml 2008-03-26 12:41:51 UTC (rev 7251)
+++ trunk/ui/tooltip/src/main/config/component/toolTip.xml 2008-03-26 12:45:23 UTC (rev 7252)
@@ -195,8 +195,8 @@
<name>attached</name>
<classname>boolean</classname>
<description>
- If the value of the "attached" attribute is true, component is attached to parent component;
- if false - component does not listen to activating browser events, but should be activated externally
+ If the value of the "attached" attribute is true, a component is attached to the parent component;
+ if false, component does not listen to activating browser events, but could be activated externally
</description>
<defaultvalue>true</defaultvalue>
</property>
16 years, 9 months
JBoss Rich Faces SVN: r7251 - Plan/3.2.0 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: tkuprevich
Date: 2008-03-26 08:41:51 -0400 (Wed, 26 Mar 2008)
New Revision: 7251
Modified:
trunk/test-applications/qa/Test Plan/3.2.0/TestPlan-RF-3.2.0.doc
Log:
Modified: trunk/test-applications/qa/Test Plan/3.2.0/TestPlan-RF-3.2.0.doc
===================================================================
(Binary files differ)
16 years, 9 months
JBoss Rich Faces SVN: r7250 - in trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html: scripts and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-03-26 08:25:57 -0400 (Wed, 26 Mar 2008)
New Revision: 7250
Modified:
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/css/inplaceinput.xcss
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
Log:
http://jira.jboss.com/jira/browse/RF-2471
Modified: trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/css/inplaceinput.xcss
===================================================================
--- trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/css/inplaceinput.xcss 2008-03-26 12:20:55 UTC (rev 7249)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/css/inplaceinput.xcss 2008-03-26 12:25:57 UTC (rev 7250)
@@ -54,7 +54,7 @@
height : 1px;
}
- .rich-inplace-controls {
+ .rich-inplace-control{
background-position: top;
background-repeat: repeat-x;
border-width : 1px;
@@ -79,8 +79,6 @@
.rich-inplace-shadow {
- top:-6px;
- left:-4px;
position : absolute;
}
Modified: trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
===================================================================
--- trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-03-26 12:20:55 UTC (rev 7249)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-03-26 12:25:57 UTC (rev 7250)
@@ -369,7 +369,7 @@
this.bar.show();*/
//var dim = this.bsPanel.getDimensions();
- this.BAR_WIDTH = 28;
+ this.BAR_WIDTH = 26;
this.BAR_HEIGHT = 12;
/*this.bar.hide();
16 years, 9 months
JBoss Rich Faces SVN: r7249 - trunk/test-applications/jsp/src/main/java/pickList.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-03-26 08:20:55 -0400 (Wed, 26 Mar 2008)
New Revision: 7249
Modified:
trunk/test-applications/jsp/src/main/java/pickList/PickList.java
Log:
Modified: trunk/test-applications/jsp/src/main/java/pickList/PickList.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2008-03-26 12:18:41 UTC (rev 7248)
+++ trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2008-03-26 12:20:55 UTC (rev 7249)
@@ -82,7 +82,7 @@
this.requiredMessage = "requiredMessage";
data = new ArrayList<SelectItem>();
for (int i = 0; i < 10; i++)
- data.add(new SelectItem("selectItems "));
+ data.add(new SelectItem("selectItems " + i));
}
16 years, 9 months