JBoss Rich Faces SVN: r7228 - trunk/test-applications/facelets/src/main/webapp/Tooltip.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-03-25 14:19:20 -0400 (Tue, 25 Mar 2008)
New Revision: 7228
Modified:
trunk/test-applications/facelets/src/main/webapp/Tooltip/TooltipProperty.xhtml
Log:
http://jira.jboss.com/jira/browse/RF-2614
Modified: trunk/test-applications/facelets/src/main/webapp/Tooltip/TooltipProperty.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/Tooltip/TooltipProperty.xhtml 2008-03-25 18:18:59 UTC (rev 7227)
+++ trunk/test-applications/facelets/src/main/webapp/Tooltip/TooltipProperty.xhtml 2008-03-25 18:19:20 UTC (rev 7228)
@@ -23,7 +23,7 @@
<h:outputText value="event:" />
<h:selectOneMenu value="#{tooltip.event}" onchange="submit();">
- <f:selectItem itemLabel="onmouseover" itemValue="oncontextmenu" />
+ <f:selectItem itemLabel="onmouseover" itemValue="onmouseover" />
<f:selectItem itemLabel="onclick" itemValue="onclick" />
<f:selectItem itemLabel="onmouseup" itemValue="onmousemove" />
</h:selectOneMenu>
16 years, 9 months
JBoss Rich Faces SVN: r7227 - trunk/test-applications/jsp/src/main/webapp/Tooltip.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-03-25 14:18:59 -0400 (Tue, 25 Mar 2008)
New Revision: 7227
Modified:
trunk/test-applications/jsp/src/main/webapp/Tooltip/TooltipProperty.jsp
Log:
http://jira.jboss.com/jira/browse/RF-2614
Modified: trunk/test-applications/jsp/src/main/webapp/Tooltip/TooltipProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Tooltip/TooltipProperty.jsp 2008-03-25 18:08:44 UTC (rev 7226)
+++ trunk/test-applications/jsp/src/main/webapp/Tooltip/TooltipProperty.jsp 2008-03-25 18:18:59 UTC (rev 7227)
@@ -27,7 +27,7 @@
<h:outputText value="event:" />
<h:selectOneMenu value="#{tooltip.event}" onchange="submit();">
- <f:selectItem itemLabel="onmouseover" itemValue="oncontextmenu" />
+ <f:selectItem itemLabel="onmouseover" itemValue="onmouseover" />
<f:selectItem itemLabel="onclick" itemValue="onclick" />
<f:selectItem itemLabel="onmouseup" itemValue="onmousemove" />
</h:selectOneMenu>
16 years, 9 months
JBoss Rich Faces SVN: r7226 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-03-25 14:08:44 -0400 (Tue, 25 Mar 2008)
New Revision: 7226
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns/usage.xhtml
Log:
http://jira.jboss.com/jira/browse/RF-398
- Language correction
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns/usage.xhtml 2008-03-25 18:06:14 UTC (rev 7225)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/columns/usage.xhtml 2008-03-25 18:08:44 UTC (rev 7226)
@@ -9,18 +9,18 @@
<ui:define name="sample">
<p>
- The tag allows <b>dynamic columns</b> in a <i>rich:dataTable</i>. It is used like a
- UIData component which iterates through a data model to create the columns.
+ The tag allows <b>dynamic columns</b> functionality in a <i>rich:dataTable</i>. It is used like a
+ UIData component which iterates through a data model to create columns.
</p>
<p>
- The component uses standard <b>value/var</b> pair of attributes to provide provide
+ The component uses a standard <b>value/var</b> pair of attributes to provide
binding to data model and request scoped variable for iteration through
this data model.
</p>
<p>
- Next simple example shows you simple use-case where the ten type of cars created
- and list of models with prices generated for this type of car. In the dataTable
- cars grouped by type in separate columns.
+ The next simple example shows you a simple use-case where ten types of cars are created
+ and a list of models with prices is generated for each type of car. In the dataTable
+ cars are grouped by type in a separate columns.
</p>
<div class="sample-container" >
<ui:include src="/richfaces/columns/examples/example.xhtml"/>
@@ -30,10 +30,10 @@
</div>
<h:form>
<p>
- Additionally as you could see
+ Additionally as you see
<h:commandLink value="Sorting Feature" immediate="true" action="sortingFeature"/>
- could be added to this component
- in the same manner as for simple rich:column.
+ could be added to this component
+ in the same way as for simple rich:column.
</p>
<p>
In this example every column provides sorting by car prices
16 years, 9 months
JBoss Rich Faces SVN: r7225 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: vsukhov
Date: 2008-03-25 14:06:14 -0400 (Tue, 25 Mar 2008)
New Revision: 7225
Modified:
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
Log:
http://jira.jboss.com/jira/browse/RF-2552 I've added some additional information about object selection
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-03-25 17:56:52 UTC (rev 7224)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-03-25 18:06:14 UTC (rev 7225)
@@ -51,8 +51,7 @@
</para>
<programlisting role="XML"><![CDATA[...
<h:inputText value="#{bean.property}" id="suggest"/>
- <rich:suggestionbox for="suggest" suggestionAction="#{bean.autocomplete}"
- var="suggest">
+ <rich:suggestionbox for="suggest" suggestionAction="#{bean.autocomplete}" var="suggest">
<h:column>
<h:outputText value="#{suggest.text}"/>
</h:column>
@@ -122,8 +121,7 @@
could get any collection for an output and outputs it in a ToolTip window the same as a
custom dataTable (in several columns)</para>
<programlisting role="XML"><![CDATA[...
- <rich:suggestionbox for="test"
- suggestionAction="#{bean.autocomplete}" var="cit" fetchValue="#{cit.text}">
+ <rich:suggestionbox for="test" suggestionAction="#{bean.autocomplete}" var="cit" fetchValue="#{cit.text}">
<h:column>
<h:outputText value="#{cit.label}"/>
</h:column>
@@ -152,8 +150,7 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
- <rich:suggestionbox for="test" suggestionAction="#{bean.autocomplete}" var="cit"
- selfRendered="true" tokens=",">
+ <rich:suggestionbox for="test" suggestionAction="#{bean.autocomplete}" var="cit" selfRendered="true" tokens=",">
<h:column>
<h:outputText value="#{cit.text}"/>
</h:column>
@@ -231,7 +228,24 @@
<imagedata fileref="images/suggestionbox5.png"/>
</imageobject>
</mediaobject>
- </figure>
+ </figure>
+ <para>
+ There is such feature in <emphasis role="bold"><property><rich:suggestionBox></property></emphasis> component as object selection.
+ If you want that selected item has been represented as object, you could set to "true" the value for
+ <emphasis><property> "usingSuggestObjects" </property></emphasis> attribute, "false" value means that selected item represents as string.
+ </para>
+ <para>
+ <emphasis role="bold">Example:</emphasis>
+ </para>
+ <programlisting role="XML"><![CDATA[...
+<rich:suggestionbox for="test" suggestionAction="#{bean.autocomplete}" var="cit" usingSuggestObjects="true">
+ <h:column>
+ <h:outputText value="#{cit.text}"/>
+ </h:column>
+</rich:suggestionbox>
+...
+]]></programlisting>
+
</section>
<section>
16 years, 9 months
JBoss Rich Faces SVN: r7224 - in trunk/ui/fileUpload/src/main: java/org/richfaces/renderkit and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-03-25 13:56:52 -0400 (Tue, 25 Mar 2008)
New Revision: 7224
Modified:
trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java
trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js
trunk/ui/fileUpload/src/main/templates/org/richfaces/fileUpload.jspx
Log:
roll back
Modified: trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java
===================================================================
--- trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java 2008-03-25 17:56:45 UTC (rev 7223)
+++ trunk/ui/fileUpload/src/main/java/org/richfaces/component/UIFileUpload.java 2008-03-25 17:56:52 UTC (rev 7224)
@@ -50,8 +50,6 @@
private String localContentType;
private String localFileName;
-
- private String fileName;
private Integer localFileSize;
@@ -81,18 +79,6 @@
return localFileName;
}
- public String getFileName() {
- return fileName;
- }
-
-
-
- public void setFileName(String fileName) {
- this.fileName = fileName;
- }
-
-
-
public void setLocalFileName(String localFileName) {
this.localFileName = localFileName;
}
Modified: trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java
===================================================================
--- trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java 2008-03-25 17:56:45 UTC (rev 7223)
+++ trunk/ui/fileUpload/src/main/java/org/richfaces/renderkit/FileUploadRendererBase.java 2008-03-25 17:56:52 UTC (rev 7224)
@@ -112,7 +112,6 @@
.getSession(false);
String uid = request.getParameter(Filter.UPLOAD_FILES_ID);
String id = request.getParameter("id");
- String fullName = request.getParameter(clientId + ":fileName");
decreaseFileCounter(session, id);
Map<String, MultipartRequest> map = (Map<String, MultipartRequest>) session
.getAttribute(Filter.REQUESTS_SESSIONS_BEAN_NAME);
@@ -122,8 +121,7 @@
clientId = clientId + ":file";
String fileName = multipartRequest.getFileName(clientId);
Object file = multipartRequest.getFile(clientId);
- fileUpload.setLocalFileName(fullName);
- fileUpload.setFileName(fileName);
+ fileUpload.setLocalFileName(fileName);
onUploadComplete(context, file, fileUpload);
}
@@ -354,7 +352,7 @@
Object file) {
ValueExpression data = fileUpload
.getValueExpression(_FILES_UPLOADED_ATTRIBUTE_NAME);
- UploadItem item = new UploadItem(fileUpload.getFileName(), fileUpload.getLocalFileName(),file);
+ UploadItem item = new UploadItem(fileUpload.getLocalFileName(),file);
if (data != null) {
if (data.getValue(context.getELContext()) instanceof Collection) {
Collection collection = (Collection) data.getValue(context
Modified: trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js
===================================================================
--- trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js 2008-03-25 17:56:45 UTC (rev 7223)
+++ trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js 2008-03-25 17:56:52 UTC (rev 7224)
@@ -394,7 +394,6 @@
this.labelMarkup = label;
this.disabled = disabled;
- this.fileNameElement = $(this.id + ":fileName");
this.element.component = this;
this.acceptedTypes = acceptedTypes;
@@ -790,7 +789,6 @@
this.clear(this.activeEntry);
}
this.activeEntry = null;
- this.fileNameElement.value = '';
this.deleteFrame();
},
@@ -951,7 +949,6 @@
function (state) {
this.updateViewState(state);
}.bind(this));
- this.fileNameElement.value = entryInput.value;
parentForm.submit();
}
Modified: trunk/ui/fileUpload/src/main/templates/org/richfaces/fileUpload.jspx
===================================================================
--- trunk/ui/fileUpload/src/main/templates/org/richfaces/fileUpload.jspx 2008-03-25 17:56:45 UTC (rev 7223)
+++ trunk/ui/fileUpload/src/main/templates/org/richfaces/fileUpload.jspx 2008-03-25 17:56:52 UTC (rev 7224)
@@ -67,8 +67,6 @@
]]>
</jsp:scriptlet>
</span>
-
- <input type="hidden" name="#{clientId}:fileName" style="display: none;" id="#{clientId}:fileName"/>
<table class="upload_toolbar_decor">
<tr>
<td>
16 years, 9 months
JBoss Rich Faces SVN: r7223 - trunk/framework/api/src/main/java/org/richfaces/model.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-03-25 13:56:45 -0400 (Tue, 25 Mar 2008)
New Revision: 7223
Modified:
trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java
Log:
roll back
Modified: trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java 2008-03-25 17:54:21 UTC (rev 7222)
+++ trunk/framework/api/src/main/java/org/richfaces/model/UploadItem.java 2008-03-25 17:56:45 UTC (rev 7223)
@@ -19,9 +19,6 @@
/** Users file name */
private String fileName;
- /** Full file name path */
- private String fullFileName;
-
/** java.io.File instance */
private File file;
@@ -31,9 +28,8 @@
/**
* Constructor for the UploadItem
*/
- public UploadItem(String fileName, String fullName, Object file) {
+ public UploadItem(String fileName, Object file) {
this.fileName = fileName;
- this.fullFileName = fullName;
if (null != file) {
if (file.getClass().isAssignableFrom(File.class)) {
this.file = (File) file;
@@ -73,11 +69,4 @@
public String getFileName() {
return fileName;
}
-
- /**
- * @return the fullFileName
- */
- public String getFullFileName() {
- return fullFileName;
- }
}
16 years, 9 months
JBoss Rich Faces SVN: r7222 - trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/templates.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-03-25 13:54:21 -0400 (Tue, 25 Mar 2008)
New Revision: 7222
Modified:
trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/templates/table.jspx
Log:
Duplication for cellspacing attribute removed: http://jira.jboss.com/jira/browse/RF-2760
Modified: trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/templates/table.jspx
===================================================================
--- trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/templates/table.jspx 2008-03-25 17:46:16 UTC (rev 7221)
+++ trunk/ui/suggestionbox/src/main/resources/org/richfaces/renderkit/html/templates/table.jspx 2008-03-25 17:54:21 UTC (rev 7222)
@@ -8,7 +8,7 @@
<f:call name="getContentId"/>
</f:attribute>
<f:call name="utils.encodePassThruWithExclusions">
- <f:parameter value="styleClass,class,onclick,onselect,width,height,rows,frame,bgcolor,border,rules,cellpadding"/>
+ <f:parameter value="styleClass,class,onclick,onselect,width,height,rows,frame,bgcolor,border,rules,cellpadding,cellspacing"/>
</f:call>
<f:attribute name="class">
<f:verbatim value="dr-sb-int-decor-table rich-sb-int-decor-table "/>
16 years, 9 months
JBoss Rich Faces SVN: r7221 - in trunk/samples/richfaces-demo/src/main: webapp/WEB-INF and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-03-25 13:46:16 -0400 (Tue, 25 Mar 2008)
New Revision: 7221
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/webapp/WEB-INF/faces-config.xml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/examples/fileUpload.xhtml
Log:
fileUpload example creation.
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-25 17:37:40 UTC (rev 7220)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/File.java 2008-03-25 17:46:16 UTC (rev 7221)
@@ -3,25 +3,17 @@
public class File {
private String Name;
- private int length;
- private byte[] data;
+ private long length;
public String getName() {
return Name;
}
public void setName(String name) {
Name = name;
}
- public int getLength() {
+ public long getLength() {
return length;
}
- public void setLength(int length) {
+ public void setLength(long length) {
this.length = length;
}
- public byte[] getData() {
- return data;
- }
- public void setData(byte[] data) {
- this.data = data;
- }
-
}
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-25 17:37:40 UTC (rev 7220)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java 2008-03-25 17:46:16 UTC (rev 7221)
@@ -3,9 +3,7 @@
*/
package org.richfaces.demo.fileUpload;
-import java.awt.Graphics2D;
import java.io.IOException;
-import java.io.OutputStream;
import java.util.ArrayList;
import org.richfaces.event.UploadEvent;
@@ -15,33 +13,36 @@
* @author Ilya Shaikovsky
*
*/
-public class FileUploadBean {
+public class FileUploadBean{
private ArrayList<File> files = new ArrayList<File>();
+ public int getSize() {
+ if (getFiles().size()>0){
+ return getFiles().size();
+ }else
+ {
+ return 0;
+ }
+ }
+
public FileUploadBean() {
}
public void listener(UploadEvent event) throws IOException{
UploadItem item = event.getUploadItem();
- System.out.println("FileUploadBean.listener()");
File file = new File();
file.setLength(item.getData().length);
file.setName(item.getFileName());
- file.setData(item.getData());
- files.add(file);
+ files.add(file);
}
- public void paint(OutputStream outputStream, Object obj) throws IOException {
- outputStream.write((byte[])obj);
- System.out.println("FileUploadBean.paint()");
- }
-
public ArrayList<File> getFiles() {
return files;
}
- public void setFiles(ArrayList<File> files) {
+ public void setFiles(ArrayList<File> files) {
this.files = files;
}
+
}
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-25 17:37:40 UTC (rev 7220)
+++ trunk/samples/richfaces-demo/src/main/webapp/WEB-INF/faces-config.xml 2008-03-25 17:46:16 UTC (rev 7221)
@@ -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>session</managed-bean-scope>
+ <managed-bean-scope>request</managed-bean-scope>
</managed-bean>
<managed-bean>
<managed-bean-name>sortingBean</managed-bean-name>
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-25 17:37:40 UTC (rev 7220)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/fileUpload/examples/fileUpload.xhtml 2008-03-25 17:46:16 UTC (rev 7221)
@@ -4,22 +4,44 @@
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"/>
+ <h:panelGrid columns="2" columnClasses="top,top">
+ <rich:fileUpload fileUploadListener="#{fileUploadBean.listener}"
+ maxFilesQuantity="5" reRender="table">
+ <a4j:support event="onuploadcomplete" reRender="table"></a4j:support>
+ </rich:fileUpload>
- <a4j:form>
- <rich:fileUpload fileUploadListener="#{fileUploadBean.listener}"
- maxFilesQuantity="5" reRender="table">
- <a4j:support event="onuploadcomplete" reRender="table"></a4j:support>
- </rich:fileUpload>
- <rich:dataTable value="#{fileUploadBean.files}" var="file" id="table">
- <rich:column>
- <h:outputText value="#{file.name}"></h:outputText>
- </rich:column>
- <rich:column>
- <h:outputText value="#{file.length}"></h:outputText>
- </rich:column>
- <rich:column>
- <a4j:mediaOutput createContent="#{fileUploadBean.paint}" value="file.data" mimeType="image/jpeg" element="img"/>
- </rich:column>
- </rich:dataTable>
+ <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: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>
+ </rich:panel>
+ </rich:dataGrid>
+ </rich:panel>
+ </h:panelGrid>
</a4j:form>
</ui:composition>
\ No newline at end of file
16 years, 9 months
JBoss Rich Faces SVN: r7220 - trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2008-03-25 13:37:40 -0400 (Tue, 25 Mar 2008)
New Revision: 7220
Modified:
trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js
Log:
http://jira.jboss.com/jira/browse/RF-2068
Modified: trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js
===================================================================
--- trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js 2008-03-25 17:36:21 UTC (rev 7219)
+++ trunk/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js 2008-03-25 17:37:40 UTC (rev 7220)
@@ -39,7 +39,8 @@
document.body.appendChild(this.element);
}
}
- this.element.wrapper = this;
+ //http://jira.jboss.com/jira/browse/RF-2068
+ //this.element.wrapper = this;
if(!this.element.parentNode && $(parentElement)) {
$(parentElement).appendChild(this.element);
}
16 years, 9 months
JBoss Rich Faces SVN: r7219 - in trunk/docs/userguide/en/src/main: resources/images and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-03-25 13:36:21 -0400 (Tue, 25 Mar 2008)
New Revision: 7219
Added:
trunk/docs/userguide/en/src/main/resources/images/subTableSC.png
Modified:
trunk/docs/userguide/en/src/main/docbook/included/dataList.xml
trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml
trunk/docs/userguide/en/src/main/docbook/included/subTable.xml
trunk/docs/userguide/en/src/main/resources/images/panelBar3.png
Log:
RF-2181 - added screens for subTable; updated screen for panelBar; corrected the references to screens for two components: dataList and dataOrderedList
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataList.xml 2008-03-25 17:35:24 UTC (rev 7218)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataList.xml 2008-03-25 17:36:21 UTC (rev 7219)
@@ -196,7 +196,7 @@
<title>Style classes</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/datalist3.png"/>
+ <imagedata fileref="images/dataorderedlist2.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -213,11 +213,11 @@
<tbody>
<row>
<entry>rich-datalist</entry>
- <entry>Defines styles for an html <ul> element</entry>
+ <entry>Defines styles for a html <ul> element</entry>
</row>
<row>
<entry>rich-list-item</entry>
- <entry>Defines styles for an html <li> element</entry>
+ <entry>Defines styles for a html <li> element</entry>
</row>
</tbody>
</tgroup>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml 2008-03-25 17:35:24 UTC (rev 7218)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.xml 2008-03-25 17:36:21 UTC (rev 7219)
@@ -186,7 +186,7 @@
<title>Style classes</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/dataorderedlist2.png"/>
+ <imagedata fileref="images/datalist3.png"/>
</imageobject>
</mediaobject>
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/subTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/subTable.xml 2008-03-25 17:35:24 UTC (rev 7218)
+++ trunk/docs/userguide/en/src/main/docbook/included/subTable.xml 2008-03-25 17:36:21 UTC (rev 7219)
@@ -286,6 +286,14 @@
</tbody>
</tgroup>
</table>
+ <figure>
+ <title>Style classes</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/subTableSC.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
<para>In order to redefine styles for all <emphasis role="bold">
<property><rich:subTable></property>
</emphasis> components on a page using CSS, it's enough to create classes with the
Modified: trunk/docs/userguide/en/src/main/resources/images/panelBar3.png
===================================================================
(Binary files differ)
Added: trunk/docs/userguide/en/src/main/resources/images/subTableSC.png
===================================================================
(Binary files differ)
Property changes on: trunk/docs/userguide/en/src/main/resources/images/subTableSC.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months