JBoss Rich Faces SVN: r4086 - in trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html: scripts and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-11-19 09:59:57 -0500 (Mon, 19 Nov 2007)
New Revision: 4086
Added:
trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/
trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js
Removed:
trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/context-menu.js
Log:
Context menu placement
Deleted: trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/context-menu.js
===================================================================
--- trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/context-menu.js 2007-11-19 14:58:53 UTC (rev 4085)
+++ trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/context-menu.js 2007-11-19 14:59:57 UTC (rev 4086)
@@ -1,4 +0,0 @@
-if (!window.Richfaces) var Richfaces = {};
-Richfaces.ContextMenu = {
- //show
-};
\ No newline at end of file
Copied: trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js (from rev 4077, trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/context-menu.js)
===================================================================
--- trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js (rev 0)
+++ trunk/sandbox/ui/contextMenu/src/main/resources/org/richfaces/renderkit/html/scripts/context-menu.js 2007-11-19 14:59:57 UTC (rev 4086)
@@ -0,0 +1,4 @@
+if (!window.Richfaces) var Richfaces = {};
+Richfaces.ContextMenu = {
+ //show
+};
\ No newline at end of file
18 years, 5 months
JBoss Rich Faces SVN: r4085 - trunk/framework/impl/src/main/resources/org/ajax4jsf/javascript/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-11-19 09:58:53 -0500 (Mon, 19 Nov 2007)
New Revision: 4085
Modified:
trunk/framework/impl/src/main/resources/org/ajax4jsf/javascript/scripts/form.js
Log:
http://jira.jboss.com/jira/browse/RF-1355
Modified: trunk/framework/impl/src/main/resources/org/ajax4jsf/javascript/scripts/form.js
===================================================================
--- trunk/framework/impl/src/main/resources/org/ajax4jsf/javascript/scripts/form.js 2007-11-19 14:58:48 UTC (rev 4084)
+++ trunk/framework/impl/src/main/resources/org/ajax4jsf/javascript/scripts/form.js 2007-11-19 14:58:53 UTC (rev 4085)
@@ -6,7 +6,7 @@
function _JSFFormSubmit(linkId,formName,target,parameters){
var form = document.getElementById(formName);
if(form){
- var hiddenField = form.elements[formName+":_idcl"];
+ /*var hiddenField = form.elements[formName+":_idcl"];
if(hiddenField){
hiddenField.value=linkId;
} else {
@@ -15,12 +15,16 @@
input.name=formName+":_idcl";
input.value=linkId;
form.appendChild(input);
- }
+ }*/
+
+ var paramNames = [];
+
if(target){
form.target=target;
}
if(parameters){
for(var param in parameters){
+ paramNames.push(param);
if(form.elements[param]){
form.elements[param].value = parameters[param];
} else {
@@ -33,6 +37,8 @@
}
}
form.submit();
+ _clearJSFFormParameters(formName,target,paramNames);
+
} else {
alert("Form "+formName+" not found in document");
}
18 years, 5 months
JBoss Rich Faces SVN: r4084 - trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html.
by richfaces-svn-commits@lists.jboss.org
Author: maksimkaszynski
Date: 2007-11-19 09:58:48 -0500 (Mon, 19 Nov 2007)
New Revision: 4084
Modified:
trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java
Log:
http://jira.jboss.com/jira/browse/RF-1355
Modified: trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java
===================================================================
--- trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java 2007-11-19 14:41:06 UTC (rev 4083)
+++ trunk/ui/core/src/main/java/org/ajax4jsf/renderkit/html/HtmlCommandLinkRenderer.java 2007-11-19 14:58:48 UTC (rev 4084)
@@ -61,7 +61,7 @@
protected void doDecode(FacesContext context, UIComponent component) {
UIForm form = getUtils().getNestingForm(context,component);
if(null != form){
- String hiddenFieldId = form.getClientId(context)+AjaxFormRenderer.HIDDEN_FIELD_SUFFIX;
+ String hiddenFieldId = getHiddenFieldId(context, form, component);
Object hiddenFieldValue;
if(null != (hiddenFieldValue=context.getExternalContext().getRequestParameterMap().get(hiddenFieldId))){
if(component.getClientId(context).equals(hiddenFieldValue)){
@@ -87,6 +87,10 @@
}
}
+ private String getHiddenFieldId(FacesContext context, UIForm form, UIComponent component) {
+ return form.getClientId(context)+AjaxFormRenderer.HIDDEN_FIELD_SUFFIX;
+ }
+
protected void doEncodeActiveBegin(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException{
writer.startElement(HTML.a_ELEMENT,component);
getUtils().encodeId(context,component);
@@ -119,6 +123,9 @@
parameters.put(param.getName(),param.getValue());
}
}
+
+ parameters.put(getHiddenFieldId(context, form, component), component.getClientId(context));
+
submit.addParameter(parameters);
onclick.append("return ");
submit.appendScript(onclick);
18 years, 5 months
JBoss Rich Faces SVN: r4083 - trunk/framework/impl/src/main/javascript/ajaxjsf.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2007-11-19 09:41:06 -0500 (Mon, 19 Nov 2007)
New Revision: 4083
Modified:
trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js
Log:
RF-1313
Modified: trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js
===================================================================
--- trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js 2007-11-19 14:34:26 UTC (rev 4082)
+++ trunk/framework/impl/src/main/javascript/ajaxjsf/JSFAJAX.js 2007-11-19 14:41:06 UTC (rev 4083)
@@ -477,7 +477,7 @@
}
A4J.AJAX._pollers[options.pollId] = window.setTimeout(function(){
A4J.AJAX._pollers[options.pollId]=undefined;
- if((typeof(options.onsubmit) == 'function') && (!options.onsubmit())){
+ if((typeof(options.onsubmit) == 'function') && (options.onsubmit()==false)){
// Onsubmit disable current poll, start next interval.
A4J.AJAX.Poll(containerId,form,options);
} else {
18 years, 5 months
JBoss Rich Faces SVN: r4082 - branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2007-11-19 09:34:26 -0500 (Mon, 19 Nov 2007)
New Revision: 4082
Modified:
branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java
Log:
ValueHolder made Serializable
Modified: branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java 2007-11-19 13:56:18 UTC (rev 4081)
+++ branches/3.1.x/ui/orderingList/src/main/java/org/richfaces/component/UIOrderingList.java 2007-11-19 14:34:26 UTC (rev 4082)
@@ -1,6 +1,7 @@
package org.richfaces.component;
import java.io.IOException;
+import java.io.Serializable;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
@@ -40,7 +41,11 @@
public abstract class UIOrderingList extends UIOrderingBaseComponent {
- public static final class ValueHolder {
+ public static final class ValueHolder implements Serializable {
+ /**
+ *
+ */
+ private static final long serialVersionUID = 3380476273566115599L;
private Collection selection;
private boolean selectionSet;
18 years, 5 months
JBoss Rich Faces SVN: r4081 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2007-11-19 08:56:18 -0500 (Mon, 19 Nov 2007)
New Revision: 4081
Modified:
trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml
Log:
RF-1298 - add Component identification parameters section; Definition of Custom Style Classes
Modified: trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml 2007-11-19 13:55:27 UTC (rev 4080)
+++ trunk/docs/userguide/en/src/main/docbook/included/contextMenu.xml 2007-11-19 13:56:18 UTC (rev 4081)
@@ -6,6 +6,46 @@
<keyword>contextMenu</keyword>
</keywordset>
</sectioninfo>
+ <table>
+ <title>Component identification parameters</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+
+ <entry>org.richfaces.ContextMenu</entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+
+ <entry>org.richfaces.component.html.ContextMenu</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+
+ <entry>org.richfaces.ContextMenu</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+
+ <entry>org.richfaces.DropDownMenuRenderer</entry>
+ </row>
+ <row>
+ <entry>tag-class</entry>
+
+ <entry>org.richfaces.taglib.ContextMenuTagHandler</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
<section>
<title>Creating the Component with a Page Tag</title>
<para>Here is a simple example as it could be used on a page: </para>
@@ -235,7 +275,7 @@
</figure>
<table>
- <title>Classes names that define a label</title>
+ <title>Classes names that define a menu item</title>
<tgroup cols="2">
<thead>
@@ -248,12 +288,163 @@
<tbody>
<row>
- <entry></entry>
+ <entry>rich-menu-item</entry>
+ <entry>Defines styles for menu item</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-disabled</entry>
+
+ <entry>Defines styles for menu item in disabed state</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-enabled</entry>
+
+ <entry>Defines styles for menu item in enabled state</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-hover</entry>
+
+ <entry>Defines styles for menu item on hover event</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-icon</entry>
+
+ <entry>Defines styles for icon in menu item</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <table>
+ <title>Classes names that define a menu item label</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>rich-menu-item-label</entry>
+
+ <entry>Defines styles for menu item label</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-label-disabled</entry>
+
+ <entry>Defines styles for menu item label in disabled state</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-label-selected</entry>
+
+ <entry>Defines styles for menu item label already selected</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Classes names that define a menu item icon</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>rich-menu-item-icon-disabled</entry>
+
+ <entry>Defines styles for icon of menu item in disabled state</entry>
+ </row>
+ <row>
+ <entry>rich-menu-item-icon-selected</entry>
+
<entry></entry>
</row>
</tbody>
</tgroup>
</table>
+ <table>
+ <title>Classes names that define a group element</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>rich-menu-group</entry>
+
+ <entry>Defines styles for menu group</entry>
+ </row>
+ <row>
+ <entry>rich-menu-group-disabled</entry>
+
+ <entry>Defines styles for menu group in disabled state</entry>
+ </row>
+ <row>
+ <entry>rich-menu-group-selected</entry>
+
+ <entry></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Classes names that define a separator</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>rich-menu-separator</entry>
+
+ <entry>Defines styles for menu separator</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ <table>
+ <title>Classes names that define a popup element</title>
+
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+
+ <tbody>
+ <row>
+ <entry>rich-menu-popup</entry>
+
+ <entry>Defines styles for popup element</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
</section>
</section>
18 years, 5 months
JBoss Rich Faces SVN: r4080 - in trunk/ui/dataTable/src/main: java/org/richfaces/renderkit and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-11-19 08:55:27 -0500 (Mon, 19 Nov 2007)
New Revision: 4080
Added:
trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/CellRenderer.java
Removed:
trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractCellRenderer.java
trunk/ui/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx
Modified:
trunk/ui/dataTable/src/main/config/component/column.xml
Log:
RF-1278
Modified: trunk/ui/dataTable/src/main/config/component/column.xml
===================================================================
--- trunk/ui/dataTable/src/main/config/component/column.xml 2007-11-19 13:12:54 UTC (rev 4079)
+++ trunk/ui/dataTable/src/main/config/component/column.xml 2007-11-19 13:55:27 UTC (rev 4080)
@@ -11,8 +11,8 @@
]]>
</description>
<renderer generate="true" override="true">
- <name>org.richfaces.ColumnRenderer</name>
- <template>org/richfaces/htmlColumn.jspx</template>
+ <name>org.richfaces.renderkit.CellRenderer</name>
+ <classname>org.richfaces.renderkit.CellRenderer</classname>
</renderer>
<tag>
<name>column</name>
Deleted: trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractCellRenderer.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractCellRenderer.java 2007-11-19 13:12:54 UTC (rev 4079)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/AbstractCellRenderer.java 2007-11-19 13:55:27 UTC (rev 4080)
@@ -1,59 +0,0 @@
-/**
- * License Agreement.
- *
- * JBoss RichFaces - Ajax4jsf Component Library
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.renderkit;
-
-import java.util.Map;
-
-import javax.faces.component.UIComponent;
-import javax.faces.context.FacesContext;
-
-import org.ajax4jsf.renderkit.RendererBase;
-
-/**
- * @author shura
- *
- */
-public abstract class AbstractCellRenderer extends RendererBase {
-
- public String styleClass(FacesContext context , UIComponent component){
- StringBuffer styleClass = new StringBuffer();
- // Construct predefined classes
- Map requestMap = context.getExternalContext().getRequestMap();
- Object parentPredefined = requestMap.get(AbstractRowsRenderer.SKIN_CELL_CLASS_KEY);
- if (null != parentPredefined) {
- styleClass.append(parentPredefined).append(" ");
- } else {
- styleClass.append("dr-table-cell rich-table-cell ");
- }
- // Append class from parent component.
- Object parent = requestMap.get(AbstractRowsRenderer.CELL_CLASS_KEY);
- if (null != parent) {
- styleClass.append(parent).append(" ");
- }
- Object custom = component.getAttributes().get("styleClass");
- if (null != custom) {
- styleClass.append(custom);
- }
- return styleClass.toString();
- }
-
-}
Added: trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/CellRenderer.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/CellRenderer.java (rev 0)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/CellRenderer.java 2007-11-19 13:55:27 UTC (rev 4080)
@@ -0,0 +1,134 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.renderkit;
+
+import java.io.IOException;
+import java.util.Map;
+
+import javax.faces.component.UIColumn;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.context.ResponseWriter;
+
+import org.ajax4jsf.renderkit.RendererBase;
+import org.ajax4jsf.renderkit.RendererUtils.HTML;
+
+/**
+ * @author shur
+ * modified by Alexej Kushunin
+ *
+ */
+public class CellRenderer extends RendererBase {
+
+ public String styleClass(FacesContext context , UIComponent component){
+ StringBuffer styleClass = new StringBuffer();
+ // Construct predefined classes
+ Map requestMap = context.getExternalContext().getRequestMap();
+ Object parentPredefined = requestMap.get(AbstractRowsRenderer.SKIN_CELL_CLASS_KEY);
+ if (null != parentPredefined) {
+ styleClass.append(parentPredefined).append(" ");
+ } else {
+ styleClass.append("dr-table-cell rich-table-cell ");
+ }
+ // Append class from parent component.
+ Object parent = requestMap.get(AbstractRowsRenderer.CELL_CLASS_KEY);
+ if (null != parent) {
+ styleClass.append(parent).append(" ");
+ }
+ Object custom = component.getAttributes().get("styleClass");
+ if (null != custom) {
+ styleClass.append(custom);
+ }
+ return styleClass.toString();
+ }
+
+ protected void doEncodeBegin(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException {
+
+ super.doEncodeBegin(writer, context, component);
+ java.lang.String clientId = component.getClientId(context);
+ boolean isHeader = (styleClass(context, component)).contains("header");
+ if(isHeader)
+ {
+ writer.startElement("th", component);
+
+ }else{
+
+ writer.startElement("td", component);
+ }
+
+
+ getUtils().writeAttribute(writer, "class", styleClass(context,component) );
+ getUtils().writeAttribute(writer, "id", clientId );
+ getUtils().encodeAttributesFromArray(context,component,new String[] {
+ "abbr" ,
+ "align" ,
+ "axis" ,
+ "bgcolor" ,
+ "char" ,
+ "charoff" ,
+ "colspan" ,
+ "dir" ,
+ "headers" ,
+ "height" ,
+ "lang" ,
+ "nowrap" ,
+ "onclick" ,
+ "ondblclick" ,
+ "onkeydown" ,
+ "onkeypress" ,
+ "onkeyup" ,
+ "onmousedown" ,
+ "onmousemove" ,
+ "onmouseout" ,
+ "onmouseover" ,
+ "onmouseup" ,
+ "rowspan" ,
+ "scope" ,
+ "style" ,
+ "title" ,
+ "valign" ,
+ "width" ,
+ "xml:lang" });
+
+ }
+
+
+ protected void doEncodeEnd(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException {
+ // TODO Auto-generated method stub
+ super.doEncodeEnd(writer, context, component);
+ boolean isHeader = (styleClass(context, component)).contains("header");
+ if(isHeader)
+ {
+ writer.endElement("th");
+
+ }else{
+
+ writer.endElement("td");
+ }
+ }
+
+ protected Class getComponentClass() {
+
+ return UIColumn.class;
+ }
+
+}
Property changes on: trunk/ui/dataTable/src/main/java/org/richfaces/renderkit/CellRenderer.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ native
Deleted: trunk/ui/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx
===================================================================
--- trunk/ui/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx 2007-11-19 13:12:54 UTC (rev 4079)
+++ trunk/ui/dataTable/src/main/templates/org/richfaces/htmlColumn.jspx 2007-11-19 13:55:27 UTC (rev 4080)
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<f:root
- xmlns:f="http://ajax4jsf.org/cdk/template"
- xmlns:c=" http://java.sun.com/jsf/core"
- xmlns:ui=" http://ajax4jsf.org/cdk/ui"
- xmlns:u=" http://ajax4jsf.org/cdk/u"
- xmlns:x=" http://ajax4jsf.org/cdk/x"
- xmlns:h="http://jsf.exadel.com/header"
- xmlns:vcp="http://ajax4jsf.org/cdk/vcp"
-
- class="org.richfaces.renderkit.html.ColumnRenderer"
- baseclass="org.richfaces.renderkit.AbstractCellRenderer"
- component="org.richfaces.component.UIColumn"
- >
- <f:clientid var="clientId"/>
- <td id="#{clientId}"
- class="#{this:styleClass(context,component)}"
- x:passThruWithExclusions="value,name,type,id,class"
- >
- <vcp:body/>
- </td>
-</f:root>
\ No newline at end of file
18 years, 5 months
JBoss Rich Faces SVN: r4079 - trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/css.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2007-11-19 08:12:54 -0500 (Mon, 19 Nov 2007)
New Revision: 4079
Modified:
trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/css/table.xcss
Log:
RF-1362
Modified: trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/css/table.xcss
===================================================================
--- trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/css/table.xcss 2007-11-19 10:56:48 UTC (rev 4078)
+++ trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/css/table.xcss 2007-11-19 13:12:54 UTC (rev 4079)
@@ -72,7 +72,7 @@
<u:style name="padding" value="4px 4px 4px 4px"/>
<u:style name="color" skin="headerTextColor"/> <!--headerTextColor-->
<u:style name="text-align" value="center"/>
- <u:style name="font-weight" value="headerWeightFont"/>
+ <u:style name="font-weight" skin="headerWeightFont"/>
<u:style name="font-size" skin="generalSizeFont"/> <!--generalSizeFont-->
<u:style name="font-family" skin="generalFamilyFont"/> <!--generalFamilyFont-->
</u:selector>
@@ -118,7 +118,7 @@
<u:style name="padding" value="4px 4px 4px 4px"/>
<u:style name="color" skin="generalTextColor"/> <!--headerTextColor-->
<u:style name="text-align" value="left"/>
- <u:style name="font-weight" value="headerWeightFont"/>
+ <u:style name="font-weight" skin="headerWeightFont"/>
<u:style name="font-size" skin="generalSizeFont"/> <!--generalSizeFont-->
<u:style name="font-family" skin="generalFamilyFont"/> <!--generalFamilyFont-->
</u:selector>
18 years, 5 months
JBoss Rich Faces SVN: r4078 - in branches/3.1.x/ui/toolBar/src/main/config: resources and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2007-11-19 05:56:48 -0500 (Mon, 19 Nov 2007)
New Revision: 4078
Added:
branches/3.1.x/ui/toolBar/src/main/config/resources/
branches/3.1.x/ui/toolBar/src/main/config/resources/resources-config.xml
Log:
Added: branches/3.1.x/ui/toolBar/src/main/config/resources/resources-config.xml
===================================================================
--- branches/3.1.x/ui/toolBar/src/main/config/resources/resources-config.xml (rev 0)
+++ branches/3.1.x/ui/toolBar/src/main/config/resources/resources-config.xml 2007-11-19 10:56:48 UTC (rev 4078)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resource-config>
+ <resource class="org.richfaces.renderkit.html.images.DotSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.DotSeparatorImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.html.images.GridSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.GridSeparatorImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.html.images.LineSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.LineSeparatorImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.html.images.SquareSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.SquareSeparatorImage</name>
+ </resource>
+
+</resource-config>
\ No newline at end of file
18 years, 5 months
JBoss Rich Faces SVN: r4077 - in trunk/ui/toolBar/src/main/config: resources and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2007-11-19 05:43:24 -0500 (Mon, 19 Nov 2007)
New Revision: 4077
Added:
trunk/ui/toolBar/src/main/config/resources/
trunk/ui/toolBar/src/main/config/resources/resources-config.xml
Log:
RF-1359
Added: trunk/ui/toolBar/src/main/config/resources/resources-config.xml
===================================================================
--- trunk/ui/toolBar/src/main/config/resources/resources-config.xml (rev 0)
+++ trunk/ui/toolBar/src/main/config/resources/resources-config.xml 2007-11-19 10:43:24 UTC (rev 4077)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resource-config>
+ <resource class="org.richfaces.renderkit.html.images.DotSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.DotSeparatorImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.html.images.GridSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.GridSeparatorImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.html.images.LineSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.LineSeparatorImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.html.images.SquareSeparatorImage">
+ <name>org.richfaces.renderkit.html.images.SquareSeparatorImage</name>
+ </resource>
+
+</resource-config>
\ No newline at end of file
18 years, 5 months