JBoss Rich Faces SVN: r7428 - Reports/3.2.0 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-03-30 11:09:54 -0400 (Sun, 30 Mar 2008)
New Revision: 7428
Added:
trunk/test-applications/qa/Test Reports/3.2.0/DailyReport320CR730032008mvitenkov.xls
Log:
Added: trunk/test-applications/qa/Test Reports/3.2.0/DailyReport320CR730032008mvitenkov.xls
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/qa/Test Reports/3.2.0/DailyReport320CR730032008mvitenkov.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 9 months
JBoss Rich Faces SVN: r7427 - trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-03-30 10:05:02 -0400 (Sun, 30 Mar 2008)
New Revision: 7427
Modified:
trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
Log:
http://jira.jboss.com/jira/browse/RF-2838
Modified: trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java
===================================================================
--- trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-03-30 14:00:46 UTC (rev 7426)
+++ trunk/ui/inplaceInput/src/main/java/org/richfaces/renderkit/InplaceInputBaseRenderer.java 2008-03-30 14:05:02 UTC (rev 7427)
@@ -90,8 +90,10 @@
clientId = clientId + UIInplaceInput.VALUE_SUFFIX;
Map request = context.getExternalContext().getRequestParameterMap();
if (request.containsKey(clientId)) {
- String newValue = (String)request.get(clientId);
+ String newValue = (String)request.get(clientId);
+ if (newValue != null) {
inplaceInput.setSubmittedValue(newValue);
+ }
}
}
16 years, 9 months
JBoss Rich Faces SVN: r7426 - in trunk/test-applications/jsp/src/main: webapp/InplaceInput and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-03-30 10:00:46 -0400 (Sun, 30 Mar 2008)
New Revision: 7426
Added:
trunk/test-applications/jsp/src/main/java/util/converter/InplaceInputConverter.java
Modified:
trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp
trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Converter.xml
Log:
+add converter
Added: trunk/test-applications/jsp/src/main/java/util/converter/InplaceInputConverter.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/util/converter/InplaceInputConverter.java (rev 0)
+++ trunk/test-applications/jsp/src/main/java/util/converter/InplaceInputConverter.java 2008-03-30 14:00:46 UTC (rev 7426)
@@ -0,0 +1,33 @@
+/**
+ *
+ */
+package util.converter;
+
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.convert.Converter;
+
+/**
+ * @author AYanul
+ *
+ */
+public class InplaceInputConverter implements Converter{
+
+ /* (non-Javadoc)
+ * @see javax.faces.convert.Converter#getAsObject(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.String)
+ */
+ public Object getAsObject(FacesContext context, UIComponent component,
+ String value) {
+ return value.toUpperCase();
+ }
+
+ /* (non-Javadoc)
+ * @see javax.faces.convert.Converter#getAsString(javax.faces.context.FacesContext, javax.faces.component.UIComponent, java.lang.Object)
+ */
+ public String getAsString(FacesContext context, UIComponent component,
+ Object value) {
+ // TODO Auto-generated method stub
+ return (String) value;
+ }
+
+}
Modified: trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp 2008-03-30 13:37:19 UTC (rev 7425)
+++ trunk/test-applications/jsp/src/main/webapp/InplaceInput/InplaceInput.jsp 2008-03-30 14:00:46 UTC (rev 7426)
@@ -8,6 +8,9 @@
and while invisible for the user who does not understand or cannot <br />
acquire the source code, many of those
<rich:inplaceInput
+ valueChangeListener="#{inplaceInput.valueChangeListener}"
+ converter="inplaceInputConverter"
+ converterMessage="Can't convert"
inputWidth="#{inplaceInput.inputWidth}"
maxInputWidth="#{inplaceInput.maxInputWidth}"
minInputWidth="#{inplaceInput.minInputWidth}"
@@ -33,8 +36,8 @@
</h:panelGrid>
<h:panelGrid columns="2">
<h:outputText value="value"></h:outputText>
- <h:inputText id="inplaceInputValueID" value="#{inplaceInput.value}" onchange="submit();">
- </h:inputText>
+ <h:outputText id="inplaceInputValueID" value="#{inplaceInput.value}" >
+ </h:outputText>
<h:outputText value="defaultLabel"></h:outputText>
Modified: trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Converter.xml
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Converter.xml 2008-03-30 13:37:19 UTC (rev 7425)
+++ trunk/test-applications/jsp/src/main/webapp/WEB-INF/faces-config-Converter.xml 2008-03-30 14:00:46 UTC (rev 7426)
@@ -18,4 +18,8 @@
<converter-id>dataConverter</converter-id>
<converter-class>util.converter.DataConverter</converter-class>
</converter>
+ <converter>
+ <converter-id>inplaceInputConverter</converter-id>
+ <converter-class>util.converter.InplaceInputConverter</converter-class>
+ </converter>
</faces-config>
16 years, 9 months
JBoss Rich Faces SVN: r7425 - trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-03-30 09:37:19 -0400 (Sun, 30 Mar 2008)
New Revision: 7425
Modified:
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
Log:
http://jira.jboss.com/jira/browse/RF-2656
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-03-30 12:57:02 UTC (rev 7424)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2008-03-30 13:37:19 UTC (rev 7425)
@@ -290,15 +290,25 @@
moveActiveItem : function(event) {
var item = this.activeItem;
- if (!this.activeItem) {
- return;
- }
if (event.keyCode == Event.KEY_UP) {
+ //part of http://jira.jboss.com/jira/browse/RF-2656 (pressing key DOWN) will be implemented in a future version
+ if (!this.activeItem) {
+ return;
+ }
var prevItem = item.previousSibling;
if (prevItem) {
this.itemsRearrangement(item, prevItem);
}
} else if (event.keyCode == Event.KEY_DOWN) {
+ if (!this.activeItem) {
+ if (!this.selectFirstOnUpdate) {
+ var curItems = this.getItems();
+ if (curItems != null && curItems.length != 0) {
+ this.doActiveItem(curItems[0]);
+ }
+ }
+ return;
+ }
var nextItem = item.nextSibling;
if (nextItem) {
this.itemsRearrangement(item, nextItem);
16 years, 9 months
JBoss Rich Faces SVN: r7424 - trunk/test-applications/facelets/src/main/webapp/ContextMenu.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-03-30 08:57:02 -0400 (Sun, 30 Mar 2008)
New Revision: 7424
Modified:
trunk/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml
Log:
http://jira.jboss.com/jira/browse/RF-2864
Modified: trunk/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml 2008-03-30 12:54:16 UTC (rev 7423)
+++ trunk/test-applications/facelets/src/main/webapp/ContextMenu/ContextMenu.xhtml 2008-03-30 12:57:02 UTC (rev 7424)
@@ -10,7 +10,7 @@
<f:param name="cmdParam" value="abc" />
</rich:menuItem>
<rich:menuItem onbeforedomupdate="#{event.onbeforedomupdate}" onclick="#{event.onclick}" oncomplete="#{event.oncomplete}" onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}" onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}" onselect="#{event.onselect}"><h:outputText value="event item"/></rich:menuItem>
- <rich:menuItem icon="/pics/header.png" value="JSAPI Hide" onclick="$(formID:contextMenuSubviewID:contextMenuDefaultID).component.doHide()" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/header.png" value="JSAPI Hide" onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.doHide()" reRender="cmInfoID">
<f:param name="cmdParam" value="hide" />
</rich:menuItem>
<rich:menuSeparator />
@@ -41,7 +41,7 @@
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
- <a4j:commandLink onclick="$(formID:contextMenuSubviewID:contextMenuDefaultID).component.doShow()" value="JSAPI Show"></a4j:commandLink>
+ <a4j:commandLink onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.doShow()" value="JSAPI Show"></a4j:commandLink>
</rich:panel>
16 years, 9 months
JBoss Rich Faces SVN: r7423 - trunk/test-applications/jsp/src/main/webapp/ContextMenu.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-03-30 08:54:16 -0400 (Sun, 30 Mar 2008)
New Revision: 7423
Modified:
trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp
Log:
http://jira.jboss.com/jira/browse/RF-2864
Modified: trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp 2008-03-30 12:31:55 UTC (rev 7422)
+++ trunk/test-applications/jsp/src/main/webapp/ContextMenu/ContextMenu.jsp 2008-03-30 12:54:16 UTC (rev 7423)
@@ -14,7 +14,7 @@
<f:param name="cmdParam" value="abc" />
</rich:menuItem>
<rich:menuItem onbeforedomupdate="#{event.onbeforedomupdate}" onclick="#{event.onclick}" oncomplete="#{event.oncomplete}" onmousedown="#{event.onmousedown}" onmousemove="#{event.onmousemove}" onmouseout="#{event.onmouseout}" onmouseover="#{event.onmouseover}" onmouseup="#{event.onmouseup}" onselect="#{event.onselect}"><h:outputText value="event item"/></rich:menuItem>
- <rich:menuItem icon="/pics/header.png" value="JSAPI Hide" onclick="$(formID:contextMenuSubviewID:contextMenuDefaultID).component.doHide()" reRender="cmInfoID">
+ <rich:menuItem icon="/pics/header.png" value="JSAPI Hide" onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.doHide()" reRender="cmInfoID">
<f:param name="cmdParam" value="hide" />
</rich:menuItem>
<rich:menuSeparator />
@@ -45,7 +45,7 @@
</rich:menuItem>
</rich:menuGroup>
</rich:contextMenu>
- <a4j:commandLink onclick="$(formID:contextMenuSubviewID:contextMenuDefaultID).component.doShow()" value="JSAPI Show"></a4j:commandLink>
+ <a4j:commandLink onclick="$('formID:contextMenuSubviewID:contextMenuDefaultID').component.doShow()" value="JSAPI Show"></a4j:commandLink>
</rich:panel>
16 years, 9 months
JBoss Rich Faces SVN: r7422 - trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-03-30 08:31:55 -0400 (Sun, 30 Mar 2008)
New Revision: 7422
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
Log:
RF-2860
Modified: trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
===================================================================
--- trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-03-30 11:51:40 UTC (rev 7421)
+++ trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-03-30 12:31:55 UTC (rev 7422)
@@ -70,6 +70,7 @@
buttonClickHandler : function(e) {
this.tempKeeperClickHandler();
+ this.tempValueKeeper.focus();
// Event.stop(e);
},
16 years, 9 months
JBoss Rich Faces SVN: r7421 - trunk/test-applications/facelets/src/main/webapp/DataScroller.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-03-30 07:51:40 -0400 (Sun, 30 Mar 2008)
New Revision: 7421
Modified:
trunk/test-applications/facelets/src/main/webapp/DataScroller/DataScroller.xhtml
Log:
fix
Modified: trunk/test-applications/facelets/src/main/webapp/DataScroller/DataScroller.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/DataScroller/DataScroller.xhtml 2008-03-30 11:35:51 UTC (rev 7420)
+++ trunk/test-applications/facelets/src/main/webapp/DataScroller/DataScroller.xhtml 2008-03-30 11:51:40 UTC (rev 7421)
@@ -1,6 +1,6 @@
<f:subview xmlns:ui="http://java.sun.com/jsf/facelets" 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" id="DataScrollerSubviewID">
- <h:dataTable id="dataTableId" value="#{dataScroller.dataTable}"
+ <rich:dataTable id="dataTableId" value="#{dataScroller.dataTable}"
var="dT" cellpadding="5px" rows="5" border="1">
<f:facet name="header">
<rich:datascroller inactiveStyle="#{style.inactiveStyle}" inactiveStyleClass="#{style.inactiveStyleClass}" selectedStyle="#{style.selectedStyle}" selectedStyleClass="#{style.selectedStyleClass}" style="#{style.style}" styleClass="#{style.styleClass}" tableStyle="#{style.tableStyle}" tableStyleClass="#{style.tableStyleClass}"
@@ -23,7 +23,7 @@
<h:column>
<h:outputText value="#{dT.data1} " /> <h:outputLink value="http://www.jboss.com/"><f:verbatim>Link</f:verbatim></h:outputLink>
</h:column>
- </h:dataTable>
+ </rich:dataTable>
<h:panelGrid id="dataScrollerActionID" columns="1">
<a4j:commandButton value="Show action" reRender="dataScrollerActionID" style=" width : 95px;"></a4j:commandButton>
<h:outputText value="#{dataScroller.action}" />
16 years, 9 months
JBoss Rich Faces SVN: r7420 - trunk/test-applications/jsp/src/main/webapp/DataScroller.
by richfaces-svn-commits@lists.jboss.org
Author: ayanul
Date: 2008-03-30 07:35:51 -0400 (Sun, 30 Mar 2008)
New Revision: 7420
Modified:
trunk/test-applications/jsp/src/main/webapp/DataScroller/DataScroller.jsp
Log:
fix
Modified: trunk/test-applications/jsp/src/main/webapp/DataScroller/DataScroller.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/DataScroller/DataScroller.jsp 2008-03-30 11:17:33 UTC (rev 7419)
+++ trunk/test-applications/jsp/src/main/webapp/DataScroller/DataScroller.jsp 2008-03-30 11:35:51 UTC (rev 7420)
@@ -4,7 +4,7 @@
<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
<f:subview id="DataScrollerSubviewID">
- <h:dataTable id="dataTableId" value="#{dataScroller.dataTable}"
+ <rich:dataTable id="dataTableId" value="#{dataScroller.dataTable}"
var="dT" cellpadding="5px" rows="5" border="1">
<f:facet name="header">
<rich:datascroller inactiveStyle="#{style.inactiveStyle}" inactiveStyleClass="#{style.inactiveStyleClass}" selectedStyle="#{style.selectedStyle}" selectedStyleClass="#{style.selectedStyleClass}" style="#{style.style}" styleClass="#{style.styleClass}" tableStyle="#{style.tableStyle}" tableStyleClass="#{style.tableStyleClass}"
@@ -27,7 +27,7 @@
<h:column>
<h:outputText value="#{dT.data1} " /> <h:outputLink value="http://www.jboss.com/"><f:verbatim>Link</f:verbatim></h:outputLink>
</h:column>
- </h:dataTable>
+ </rich:dataTable>
<h:panelGrid id="dataScrollerActionID" columns="1">
<a4j:commandButton value="Show action" reRender="dataScrollerActionID" style=" width : 95px;"></a4j:commandButton>
<h:outputText value="#{dataScroller.action}" />
16 years, 9 months
JBoss Rich Faces SVN: r7419 - in trunk/samples/richfaces-demo/src/main: webapp/richfaces and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-03-30 07:17:33 -0400 (Sun, 30 Mar 2008)
New Revision: 7419
Added:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning/
trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning/usage.xhtml
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
Log:
standard skinning page
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-29 20:58:31 UTC (rev 7418)
+++ trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2008-03-30 11:17:33 UTC (rev 7419)
@@ -80,4 +80,5 @@
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
+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
+StandardSkinning =richMisc, \t Standard Skinning, \t\t/images/ico_StandardSkinning.gif, \t\t/images/cn_StandardSkinning.gif, \t\t\tRichFacesComponentsLibrary.html\#StandardSkinning, jbossrichfaces/freezone/docs/tlddoc/rich/StandardSkinning.html, jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html, \t\t\t\t\t/richfaces/standardSkinning.jsf
\ No newline at end of file
Added: trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning/usage.xhtml (rev 0)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning/usage.xhtml 2008-03-30 11:17:33 UTC (rev 7419)
@@ -0,0 +1,50 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:rich="http://richfaces.org/rich">
+<ui:composition template="/templates/component-sample.xhtml">
+ <ui:define name="sample">
+ <style>
+ul,ol {
+ font-size: 11px !important;
+}
+</style>
+ <p>This section overviews main principles of standard components
+ skinning with the Rich Faces framework.</p>
+ <p>This feature provides styling for standard HTML form elements
+ in order to be highly compilant to RichFaces common look'n'feel. There
+ should be two ways of applying skins to elements:</p>
+ <ul>
+ <li>Skinning style classes are applied to elements by element
+ name and type attribute (where applicable). No additional steps
+ required from an application developer. Application initialization
+ parameter serves for enabling/disabling the feature.</li>
+ <li>Several style classes are provided for different types of
+ elements. That style classes have predefined names. Application
+ developer should manually assign classes to controls that needs
+ skinning or assign class to an element that contains controls.</li>
+ </ul>
+ <p>Standard controls skinning feature provides 2 levels of
+ skinning:</p>
+ <ol>
+ <li><b>Standard</b> - customization of only
+ basic style properties. </li>
+ <li><b>Extended</b> - extends basic level introducing customizations
+ of a broader number of style properties </li>
+ </ol>
+ <p class="note">
+ Advanced skinning should not be applied to browsers having rich
+ visual styling for controls (e.g. Opera and Safari).
+ Also advanced level of skinning requires support of CSS 2 attribute selectors
+ either as implicit type attributes for button/textarea elements (e.g. IE7
+ in standards compilant mode) or CSS 3 draft namespace selectors (e.g. Mozilla
+ Firefox).
+ </p>
+
+ </ui:define>
+
+</ui:composition>
+</html>
Added: trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning.xhtml (rev 0)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/standardSkinning.xhtml 2008-03-30 11:17:33 UTC (rev 7419)
@@ -0,0 +1,14 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:rich="http://richfaces.org/rich">
+<ui:composition template="/templates/main.xhtml">
+ <ui:define name="title">RichFaces - Open Source Rich JSF Components - Stndard Components Skinning</ui:define>
+ <ui:define name="body">
+
+ <ui:include src="/richfaces/standardSkinning/usage.xhtml"/>
+ </ui:define>
+</ui:composition>
+</html>
16 years, 9 months