JBoss Rich Faces SVN: r5244 - trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/dnd.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-01-09 14:48:59 -0500 (Wed, 09 Jan 2008)
New Revision: 5244
Modified:
trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/dnd/dnd-draggable.js
Log:
http://jira.jboss.com/jira/browse/RF-1859
Modified: trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/dnd/dnd-draggable.js
===================================================================
--- trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/dnd/dnd-draggable.js 2008-01-09 19:47:29 UTC (rev 5243)
+++ trunk/framework/impl/src/main/resources/org/richfaces/renderkit/html/scripts/dnd/dnd-draggable.js 2008-01-09 19:48:59 UTC (rev 5244)
@@ -512,19 +512,19 @@
},
changeIndicatorColor: function(indicator, color) {
- Element.setStyle(indicator, {"border-top" : "1px dashed "+color});
+ indicator.style.borderTop = "1px dashed "+ color;
var elt = $("_rfDefaultDragIndicatorLeft");
if (elt) {
- Element.setStyle(elt, {"border-left" : "1px dashed "+color});
+ elt.style.borderLeft = "1px dashed "+ color;
}
elt = $("_rfDefaultDragIndicatorRight");
if (elt) {
- Element.setStyle(elt, {"border-right" : "1px dashed "+color});
+ elt.style.borderRight = "1px dashed "+ color;
}
elt = $("_rfDefaultDragIndicatorBottom");
if (elt) {
- Element.setStyle(elt, {"border-bottom" : "1px dashed "+color});
+ elt.style.borderBottom = "1px dashed "+ color;
}
}
};
17 years
JBoss Rich Faces SVN: r5243 - in trunk/sandbox/ui/combobox/src/main: resources/org/richfaces/renderkit/html/scripts and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-09 14:47:29 -0500 (Wed, 09 Jan 2008)
New Revision: 5243
Modified:
trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
selectFirstOnUpdate attribute was added
Modified: trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml
===================================================================
--- trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml 2008-01-09 19:36:30 UTC (rev 5242)
+++ trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml 2008-01-09 19:47:29 UTC (rev 5243)
@@ -56,6 +56,12 @@
<defaultvalue>true</defaultvalue>
</property>
<property>
+ <name>selectFirstOnUpdate</name>
+ <classname>java.lang.Boolean</classname>
+ <description></description>
+ <defaultvalue>true</defaultvalue>
+ </property>
+ <property>
<name>defaultMessage</name>
<classname>java.lang.String</classname>
<description></description>
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:36:30 UTC (rev 5242)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:47:29 UTC (rev 5243)
@@ -3,7 +3,7 @@
Richfaces.ComboBox.prototype = {
- initialize: function(combobox, listId, parentListId, fieldId, buttonId, classes, listWidth, listHeight, itemsText, directInputSuggestions, filterNewValue, onlistcall, onselected, defaultMessage) {
+ initialize: function(combobox, listId, parentListId, fieldId, buttonId, classes, listWidth, listHeight, itemsText, directInputSuggestions, filterNewValue, selectFirstOnUpdate, onlistcall, onselected, defaultMessage) {
this.directInputSuggestions = directInputSuggestions;
this.filterNewValue = filterNewValue;
@@ -12,7 +12,7 @@
this.button = $(buttonId);
var fieldDem = Richfaces.ComboBoxList.getElemXY(this.field);
fieldDem.height = this.field.offsetHeight;
- this.comboList = new Richfaces.ComboBoxList(listId, parentListId, classes, listWidth, listHeight, itemsText, onlistcall, fieldDem);
+ this.comboList = new Richfaces.ComboBoxList(listId, parentListId, selectFirstOnUpdate, classes, listWidth, listHeight, itemsText, onlistcall, fieldDem);
this.defaultMessage = defaultMessage;
@@ -184,7 +184,7 @@
Richfaces.ComboBoxList = Class.create();
Richfaces.ComboBoxList.prototype = {
- initialize: function(listId, parentListId, classes, width, height, itemsText, onlistcall, fieldXY) {
+ initialize: function(listId, parentListId, selectFirstOnUpdate, classes, width, height, itemsText, onlistcall, fieldXY) {
this.list = $(listId);
this.listParent = $(parentListId);
@@ -196,6 +196,7 @@
this.listParent.observe("rich:onlistcall", this.onlistcall);
}
+ this.selectFirstOnUpdate = selectFirstOnUpdate;
this.classes = classes;
this.isList = false;
@@ -239,8 +240,10 @@
this.setPosition(this.fieldDimensions.top, this.fieldDimensions.left, this.fieldDimensions.height);
var curItems = this.getItems();
- if (curItems.length != 0) {
- this.selectItem(curItems[0]);
+ if (this.selectFirstOnUpdate) {
+ if (curItems.length != 0) {
+ this.selectItem(curItems[0]);
+ }
}
this.listParent.show();
this.listParent.fire("rich:onlistcall", {});
17 years
JBoss Rich Faces SVN: r5242 - trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-09 14:36:30 -0500 (Wed, 09 Jan 2008)
New Revision: 5242
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
component is corrected
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:33:00 UTC (rev 5241)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:36:30 UTC (rev 5242)
@@ -365,7 +365,7 @@
getEventItem : function(event) {
var item = Event.findElement(event, "div");
- if ((item == null) || (item.id == this.listParent.id)) {
+ if ((item == null) || (item.id == this.listParent.id) || (item.id == this.list.id)) {
return;
}
return item;
17 years
JBoss Rich Faces SVN: r5241 - trunk/sandbox/ui/combobox/src/main/config/component.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-09 14:33:00 -0500 (Wed, 09 Jan 2008)
New Revision: 5241
Modified:
trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml
Log:
add enableManualInput attribute def
Modified: trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml
===================================================================
--- trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml 2008-01-09 19:31:05 UTC (rev 5240)
+++ trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml 2008-01-09 19:33:00 UTC (rev 5241)
@@ -33,6 +33,12 @@
<classname>java.lang.Object</classname>
</property>
<property>
+ <name>enableManualInput</name>
+ <classname>boolean</classname>
+ <description>enabled for keybord input</description>
+ <defaultvalue>false</defaultvalue>
+ </property>
+ <property>
<name>selectFirstOnUpdate</name>
<classname>boolean</classname>
<defaultvalue>true</defaultvalue>
@@ -208,19 +214,7 @@
<description></description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
- <property>
- <name>buttonIcon</name>
- <classname>java.lang.String</classname>
- <description>uri to the button icon image</description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
- </property>
- <property>
- <name>buttonIconDisabled</name>
- <classname>java.lang.String</classname>
- <description>uri to the disabled button icon image</description>
- <defaultvalue><![CDATA[""]]></defaultvalue>
- </property>
-
+
&html_events;
</properties>
</component>
17 years
JBoss Rich Faces SVN: r5240 - trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-09 14:31:05 -0500 (Wed, 09 Jan 2008)
New Revision: 5240
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
component corrected
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:25:25 UTC (rev 5239)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:31:05 UTC (rev 5240)
@@ -18,6 +18,8 @@
this.onselected = onselected;
+ this.isSelection = true;
+
this.initCombobox();
},
@@ -72,14 +74,17 @@
if (this.field.value == this.defaultMessage) {
this.field.value = "";
} else {
- Richfaces.ComboBox.textboxSelect(this.field, 0, this.field.value.length);
+ if (this.isSelection) {
+ Richfaces.ComboBox.textboxSelect(this.field, 0, this.field.value.length);
+ }
+ this.isSelection = true;
}
},
valueHandler : function(event) {
+ this.isSelection = false;
this.field.focus();
this.setValue(true);
-
this.comboList.hide();
},
17 years
JBoss Rich Faces SVN: r5239 - in trunk/sandbox/ui/combobox/src/main: resources/org/richfaces/renderkit/html/css and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-09 14:25:25 -0500 (Wed, 09 Jan 2008)
New Revision: 5239
Modified:
trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
Log:
rename classes according spec
Modified: trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml
===================================================================
--- trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml 2008-01-09 18:31:34 UTC (rev 5238)
+++ trunk/sandbox/ui/combobox/src/main/config/component/combobox.xml 2008-01-09 19:25:25 UTC (rev 5239)
@@ -208,6 +208,19 @@
<description></description>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
+ <property>
+ <name>buttonIcon</name>
+ <classname>java.lang.String</classname>
+ <description>uri to the button icon image</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+ <property>
+ <name>buttonIconDisabled</name>
+ <classname>java.lang.String</classname>
+ <description>uri to the disabled button icon image</description>
+ <defaultvalue><![CDATA[""]]></defaultvalue>
+ </property>
+
&html_events;
</properties>
</component>
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss 2008-01-09 18:31:34 UTC (rev 5238)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss 2008-01-09 19:25:25 UTC (rev 5239)
@@ -6,8 +6,15 @@
<f:verbatim>
<![CDATA[
+.rich-combobox-button-pressed {
+}
+.rich-combobox-button-disabled {
+}
+.rich-combobox-button-hovered {
+}
+
.rich-combobox-item-normal {
}
@@ -107,21 +114,21 @@
border : 1px solid;
}
-.rich-combobox-button-bg {
+.rich-combobox-button-background {
background : top repeat-x;
cursor : pointer;
}
-.rich-combobox-button-bg-press {
+.rich-combobox-button-pressed-background {
background : top repeat-x;
cursor : pointer;
}
-.rich-combobox-button-arrow {
+.rich-combobox-button-icon {
background : center no-repeat; cursor : pointer;
}
-.rich-combobox-button-arrow-disabled {
+.rich-combobox-button-icon-disabled {
background : center no-repeat; cursor : pointer;
}
@@ -129,27 +136,27 @@
</f:verbatim>
- <u:selector name=".rich-combobox-button-bg">
+ <u:selector name=".rich-combobox-button-background">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxButtonGradient" />
</u:style>
<u:style name="background-color" skin="tabBackgroundColor"/>
</u:selector>
- <u:selector name=".rich-combobox-button-bg-press">
+ <u:selector name=".rich-combobox-button-pressed-background">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxButtonPressGradient" />
</u:style>
<u:style name="background-color" skin="tabBackgroundColor"/>
</u:selector>
- <u:selector name=".rich-combobox-button-arrow">
+ <u:selector name=".rich-combobox-button-icon">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxArrowImage" />
</u:style>
</u:selector>
- <u:selector name=".rich-combobox-button-arrow-disabled">
+ <u:selector name=".rich-combobox-button-icon-disabled">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxArrowImageDisable" />
</u:style>
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 18:31:34 UTC (rev 5238)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 19:25:25 UTC (rev 5239)
@@ -166,12 +166,12 @@
},
doActive : function() {
- this.button.className = "rich-combobox-button rich-combobox-font rich-combobox-button-arrow";
+ this.button.className = "rich-combobox-font rich-combobox-button-icon rich-combobox-button";
this.field.className = "rich-combobox-font rich-combobox-input-default rich-combobox-input"; //FIXME
},
doDisable : function() {
- this.button.className = "rich-combobox-button rich-combobox-font rich-combobox-button-arrow-disabled";
+ this.button.className = "rich-combobox-font rich-combobox-button-icon-disabled rich-combobox-button";
this.field.className = "rich-combobox-font-disabled rich-combobox-input-default-disabled rich-combobox-input-disabled"; //FIXME
}
};
Modified: trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-09 18:31:34 UTC (rev 5238)
+++ trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-09 19:25:25 UTC (rev 5239)
@@ -54,11 +54,11 @@
<div id="#{clientId}" class="rich-combobox-font rich-combobox-shell" style="width:#{listWidth}">
<input id="comboboxField#{clientId}" class="rich-combobox-font rich-combobox-input-default rich-combobox-input" type="text" size="#{inputSize}" autocomplete="off" style="width:#{listWidth}">
</input>
- <input id="comboBoxButtonBG#{clientId}" readonly="true" type="text" value="" class="rich-combobox-button rich-combobox-font rich-combobox-button-bg">
+ <input id="comboBoxButtonBG#{clientId}" readonly="true" type="text" value="" class="rich-combobox-font rich-combobox-button-background rich-combobox-button">
</input>
- <input id="comboboxButton#{clientId}" readonly="true" type="text" value="" class="rich-combobox-button rich-combobox-font rich-combobox-button-arrow"
- onmousedown="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-button rich-combobox-font rich-combobox-button-bg-press'"
- onmouseup="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-button rich-combobox-font rich-combobox-button-bg'" >
+ <input id="comboboxButton#{clientId}" readonly="true" type="text" value="" class="rich-combobox-font rich-combobox-button-icon rich-combobox-button "
+ onmousedown="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-font rich-combobox-button-pressed-background rich-combobox-button'; this.className='rich-combobox-button rich-combobox-button-pressed rich-combobox-font rich-combobox-button-icon';"
+ onmouseup="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-font rich-combobox-button-background rich-combobox-button'; this.className='rich-combobox-button rich-combobox-font rich-combobox-button-icon'" >
</input>
<input type="text" class="rich-combobox-strut rich-combobox-font" style="width:#{listWidth}">
</input>
17 years
JBoss Rich Faces SVN: r5238 - in trunk/docs/userguide/en/src/main: resources/images and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: vsukhov
Date: 2008-01-09 13:31:34 -0500 (Wed, 09 Jan 2008)
New Revision: 5238
Modified:
trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/column.xml
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml
trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panel.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml
trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/recursiveTreeNodesAdaptor.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/separator.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tab.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
trunk/docs/userguide/en/src/main/docbook/included/tree.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
trunk/docs/userguide/en/src/main/resources/images/calendar1a.png
trunk/docs/userguide/en/src/main/resources/images/calendar1b.png
trunk/docs/userguide/en/src/main/resources/images/dropDownMenu5.png
trunk/docs/userguide/en/src/main/resources/images/menuGroup3.png
trunk/docs/userguide/en/src/main/resources/images/menuItem2.png
trunk/docs/userguide/en/src/main/resources/images/orderingList_classes_1.png
Log:
http://jira.jboss.com/jira/browse/RF-771
Components names in titles of initial screenshots should be unified (e.g. <rich:calendar> component) done 9.01.08
Modified: trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/ajaxListener.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -75,7 +75,7 @@
a good place for update the list of re-rendered components, for example.
Ajax Listener is not invoked for non-Ajax request and when RichFaces works in "Ajax Request generates
Non-Ajax Response" mode. Therefore, ajax Listener invocation is a good indicator that Ajax response is going to be processed.
-Attribute "type" defines the fully qualified Java class name for listener. This class should implement org.ajax4jsf.framework.ajax.ajaxListener
+Attribute "type" described in <link linkend="ajaxListener attributes">the following chapter</link>. defines the fully qualified Java class name for listener.This class should implement org.ajax4jsf.framework.ajax.ajaxListener
interface. You can access to the source of the event (Ajax component) using event.getSource() call.
</para>
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
<property><rich:calendar></property>
</emphasis> component is used for creating monthly calendar elements on a page.</para>
<figure>
- <title>Calendar component</title>
+ <title><rich:calendar> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/calendar.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/calendar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/calendar.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -82,8 +82,7 @@
<section>
<title>Details of Usage</title>
<para>The <emphasis>
- <property>"popup"<ulink
- fileref="ui\calendar\src\main\config\component\calendar.xml">RichFaces Users Forum</ulink>.
+ <property>"popup"
</property>
</emphasis> attribute defines calendar representation mode on a page. If it's
"true" the calendar is represented on a page as an input field and a button.
@@ -918,11 +917,7 @@
<imagedata fileref="images/calendar1a.png" scalefit="1"/>
</imageobject>
</mediaobject>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/calendar1b.png" scalefit="1"/>
- </imageobject>
- </mediaobject>
+
</figure>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The component for row rendering for a UIData component.</para>
<figure>
- <title>Column component</title>
+ <title><rich:column> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/column1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/column.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/column.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/column.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -101,7 +101,7 @@
]]></programlisting>
<para>The result is:</para>
<figure>
- <title>Generated column component</title>
+ <title>Generated <rich:column> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/column2.png"/>
@@ -135,7 +135,7 @@
]]></programlisting>
<para>As a result the following structure is rendered:</para>
<figure>
- <title>Column modified with colspan and breakbefore attributes</title>
+ <title><rich:column> modified with colspan and breakbefore attributes</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/column3.png"/>
@@ -170,7 +170,7 @@
]]></programlisting>
<para>As a result:</para>
<figure>
- <title>Column generated with rowspan attribute</title>
+ <title><rich:column> generated with rowspan attribute</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/column4.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The component combines columns in one row to organize complex subparts of a table.</para>
<figure>
- <title>ColumnGroup component</title>
+ <title><rich:columnGroup> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/columngroup1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/columnGroup.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -125,7 +125,7 @@
]]></programlisting>
<para>The result is:</para>
<figure>
- <title>Generated columnGroup component</title>
+ <title>Generated <rich:columnGroup> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/columngroup2.png"/>
@@ -162,7 +162,7 @@
]]></programlisting>
<para>Generated on a page as:</para>
<figure>
- <title>ColumnGroup with complex headers</title>
+ <title><rich:columnGroup> with complex headers</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/columngroup3.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/contextMenu.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -13,7 +13,7 @@
context menus that are activated after a user defines an event (onmouseover, onclick,
etc.) on any element on the page.</para>
<figure>
- <title>Component ContextMenu</title>
+ <title><rich:contextMenu> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/contextMenu1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataDefinitionList.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component for definition lists rendering that allows choosing data from a model
and obtains built-in support of Ajax updates.</para>
<figure>
- <title>DataDefinitionList component</title>
+ <title><rich:dataDefinitionList> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datadefinitionlist1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataFilterSlider.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A slider-based action component is used for filtering table data.</para>
<figure>
- <title>DataFilterSlider component</title>
+ <title><rich:dataFilterSlider> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dataFilterSlider.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataGrid.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component to render data as a grid that allows choosing data from a model
and obtains built-in support of Ajax updates.</para>
<figure>
- <title>DataGrid component</title>
+ <title><rich:dataGrid> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datagrid1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataList.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component for unordered lists rendering that allows choosing data from a model
and obtains built-in support of Ajax updates.</para>
<figure>
- <title>DataList component</title>
+ <title><rich:dataList> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datalist1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataOrderedList.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component for ordered lists rendering that allows choosing data from a model
and obtains built-in support of Ajax updates.</para>
<figure>
- <title>DataOrderedList component</title>
+ <title><rich:dataOderedList> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dataorderedlist1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataTable.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component for tables rendering that allows choosing data from a model and obtains
built-in support of Ajax updates.</para>
<figure>
- <title>DataTable component</title>
+ <title><rich:dataTable> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datatable1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dataTable.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -314,7 +314,7 @@
<para>On the screenshot there are classes names that define styles for component elements.</para>
<figure>
- <title>DataTable class names</title>
+ <title><rich:dataTable> class names</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dataTable2.png" scalefit="1"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component designed for providing the functionality of tables scrolling using Ajax
requests.</para>
<figure>
- <title>Datascroller component</title>
+ <title><rich:datascroller> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datascroller1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/datascroller.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -127,7 +127,7 @@
...
]]></programlisting>
<figure>
- <title>Datascroller controls</title>
+ <title><rich:datascroller> controls</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/datascroller2.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -12,7 +12,7 @@
operations. The displayed drag indicator can show information about the dragged elements.</para>
<figure>
- <title>DragIndicator component</title>
+ <title><rich:dragIndicator> component</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragIndicator.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -81,7 +81,7 @@
<para> In the simplest way the component could be defined empty - in that case a default
indicator will be shown like this: </para>
<figure>
- <title>Simplest dragIndicator </title>
+ <title>Simplest <rich:dragIndicator> </title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dragIndicator3.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dragSupport.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -14,7 +14,7 @@
supporting drag-and-drop operations.</para>
<figure>
- <title>DragSupport component</title>
+ <title><rich:dragSupport> component</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/draggable.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
button on the content and drag it to any drop zone. It encodes all necessary JavaScript
code for supporting drag operations.</para>
<figure>
- <title>Draggable component</title>
+ <title><rich:draggable> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/draggable1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropSupport.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -13,7 +13,7 @@
started.</para>
<figure>
- <title>DropSupport component</title>
+ <title><rich:dropSupport> component</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/dropZone.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
dropped onto the area of this component, <property>dropZone</property> performs an Ajax request
processing this event.</para>
<figure>
- <title>DropZone with dragged element</title>
+ <title><rich:dropZone> with dragged element</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/dropZone.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>Component that presents the Google <property>map</property> in the JSF applications.</para>
<figure>
- <title>Gmap component</title>
+ <title><rich:gmap> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/gmap.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/gmap.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/gmap.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -105,7 +105,7 @@
<property>"zoom"</property>
</emphasis>= 5.</para>
<figure>
- <title>Gmap initial rendering</title>
+ <title><rich:gmap> initial rendering</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/gmap1.png"/>
@@ -130,7 +130,7 @@
rendered </listitem>
</itemizedlist>
<figure>
- <title>Gmap accessible controls</title>
+ <title><rich:gmap> accessible controls</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/gmap3.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -12,7 +12,7 @@
field is possible (optional). Also it's possible to see the current value in the toolTip
above a dragged handle control.</para>
<figure>
- <title>InputNumberSlider component</title>
+ <title><rich:inputNumberSlider> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/slider.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSlider.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -87,7 +87,7 @@
<para>It generates on a page:</para>
<figure>
- <title>Generated inputNumberSlider</title>
+ <title>Generated <rich:inputNumberSlider></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/slider2.png"/>
@@ -110,7 +110,7 @@
<programlisting role="XML"><![CDATA[<rich:inputNumberSlider minValue="1" maxValue="100" showInput="false"/>]]></programlisting>
<para>It looks at page like:</para>
<figure>
- <title>InputNumberSlider without input field</title>
+ <title><rich:inputNumberSlider> without input field</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/slider3.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -14,7 +14,7 @@
attribute. When arrow
controls are pressed, the cursor can be moved in any way without losing a dragged state.</para>
<figure>
- <title>InputNumberSpinner component</title>
+ <title><rich:InputNumberSpinner> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/inputNumberSpinnerMain.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/inputNumberSpinner.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -88,7 +88,7 @@
]]></programlisting>
<para>It generates on a page:</para>
<figure>
- <title>Generated inputNumberSpinner</title>
+ <title>Generated <rich:inputNumberSpinner></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/inputNumberSpinner2.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/listShuttle.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -12,7 +12,7 @@
</emphasis> component is used for moving chosen items
from one list into another with their optional reordering there.</para>
<figure>
- <title>ListShuttle component</title>
+ <title><rich:ListShuttle> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/listShuttle1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/menuSeparator.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The <emphasis role="bold"><property><rich:menuSeparator></property></emphasis> component is used for the definition of a horizontal separator that can be placed between groups or items.</para>
<figure>
- <title><rich:menuSeparator></title>
+ <title><rich:menuSeparator> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/menuSeparator1.png" />
Modified: trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/message.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The component used for rendering a single message for a specific component. </para>
<figure>
- <title>Message component</title>
+ <title><rich:message> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/message.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/messages.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -13,7 +13,7 @@
<property><rich:message></property>
</emphasis> component but used for rendering all messages for the components.</para>
<figure>
- <title>Message component</title>
+ <title><rich:message> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/messages.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/modalPanel.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -14,7 +14,7 @@
code.</para>
<figure>
- <title>ModalPanel component</title>
+ <title><rich:modalPanel> component</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/modalPanel.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -161,7 +161,7 @@
on this link makes the modal window content appear.</para>
<figure>
- <title>ModalPanel with links</title>
+ <title><rich:modalPanel> with links</title>
<mediaobject>
<imageobject>
@@ -190,7 +190,7 @@
<para>The result is displayed here:</para>
<figure>
- <title>ModalPanel with control element</title>
+ <title><rich:modalPanel> with control element</title>
<mediaobject>
<imageobject>
@@ -503,7 +503,7 @@
<title>Definition of Custom Style Classes</title>
<figure>
- <title>Modal Panel class names</title>
+ <title><rich:modalPanel> class name</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/orderingList.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
<property><rich:orderingList></property>
</emphasis> is a component for ordering items in a list. This component provides possibilities to reorder a list and sort it on the client side.</para>
<figure>
- <title>orderingList component</title>
+ <title><rich:orderingList> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/orderinList1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/orderingList.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -888,18 +888,14 @@
<figure>
- <title>Style classes</title>
+ <title>Classes names</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/orderingList_classes_1.png"/>
</imageobject>
</mediaobject>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/orderingList_classes_2.png"/>
- </imageobject>
- </mediaobject>
+
</figure>
<table>
Modified: trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/paint2D.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>Create image by painting from a managed bean method, same as <emphasis><property>"paint"</property></emphasis> (Graphics2D)
in <emphasis><property>"SWING"</property></emphasis> components. </para>
<figure>
- <title>Paint2D component</title>
+ <title><rich:paint2D> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/paint2D2.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>A skinnable <property>panel</property> that is rendered as a bordered rectangle with or
without a header.</para>
<figure>
- <title>Panel component</title>
+ <title><rich:panel> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelMain.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panel.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -131,7 +131,7 @@
]]></programlisting>
<para>It's displayed on a page in the following way:</para>
<figure>
- <title>Panel with header</title>
+ <title><rich:panel> with header</title>
<mediaobject>
<imageobject>
@@ -337,7 +337,7 @@
particular <property>panel</property>. As a result, the <property>panel</property> with a
header redefined color and a text style in body is got.</para>
<figure>
- <title>Panel with redefined header and body text style</title>
+ <title><rich:panel> with redefined header and body text style</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBar.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para><property>panelBar</property> is used for grouping any content which is loaded on the client
side and appears as groups divided on child panels after the header is clicked.</para>
<figure>
- <title>PanelBar with content inside</title>
+ <title><rich:panelBar> with content inside</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelBarMain.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBar.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -146,7 +146,7 @@
</emphasis>, which is applicable to a whole component, specifying padding, borders, and
etc.</para>
<figure>
- <title>Style class</title>
+ <title>Style classes</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelBarItem.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
panelBar which is loaded on client side and appears as groups divided on child panels after
header is clicked.</para>
<figure>
- <title>PanelBarItem component</title>
+ <title><rich:panelBarItem> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelBarItem.png" scalefit="1"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
<property><rich:panelMenu></property>
</emphasis> component is used to define an inline vertical menu on a page.</para>
<figure>
- <title>PanelMenu component</title>
+ <title><rich:panelMenu> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenu.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -170,7 +170,6 @@
<figure>
<title>Using the <emphasis><property>"expandSingle"</property></emphasis> attribute</title>
- <title>using the 'expand single' attribute</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuGroup.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
<property><rich:panelMenuGroup></property>
</emphasis> component is used to define an expandable group of items inside the panel menu or other group.</para>
<figure>
- <title>panelmenugroup component</title>
+ <title><rich:panelMenuGroup> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/panelMenuItem.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
<property><rich:panelMenuItem></property>
</emphasis> component is used to define a single item inside popup list.</para>
<figure>
- <title>PanelMenuItem component</title>
+ <title><rich:panelMenuItem> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/panelmenu.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/recursiveTreeNodesAdaptor.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/recursiveTreeNodesAdaptor.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/recursiveTreeNodesAdaptor.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -12,7 +12,7 @@
</para>
<figure>
- <title>Expanded tree with recursiveTreeNodesAdaptor</title>
+ <title>Expanded tree with recursive <rich:treeNodesAdaptor></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/recursiveTreeNodesAdaptor1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -13,7 +13,7 @@
</para>
<figure>
- <title>ScrollableDataTable component</title>
+ <title><rich:scrollableDataTable> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/scrollable-dt1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>A horizontal line to use as a <property>separator</property> in a layout. The line type
can be customized with the <emphasis ><property>"lineType"</property></emphasis> parameter.</para>
<figure>
- <title>Separator component</title>
+ <title><rich:separator> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/separator.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/separator.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/separator.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -90,7 +90,7 @@
</emphasis>
</para>
<figure>
- <title>Different line types of separator</title>
+ <title>Different line types of <rich:separator></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/separator1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A collapsible panel, which content shows/hides after activating a header control.</para>
<figure>
- <title>SimpleTogglePanel component</title>
+ <title><rich:simpleTogglePanel> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/simpleTogglePanel.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/simpleTogglePanel.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -105,7 +105,7 @@
<listitem> etc. </listitem>
</itemizedlist>
<figure>
- <title>SimpleTogglePanel states</title>
+ <title><rich:simpleTooglePanel> states</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/simpleTogglePanel2.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/spacer.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para> A <property>spacer</property> that is used in layout and rendered as a transparent image.</para>
<figure>
- <title>Spacer component</title>
+ <title><rich:spacer> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/spacer.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/subTable.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -15,7 +15,7 @@
<para>The component is used for inserting <property>subtables</property> into tables with opportunity to choose data from a model
and built-in Ajax updates support.</para>
<figure>
- <title>SubTable element</title>
+ <title><rich:subTable> element</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/subtable1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -13,7 +13,7 @@
list of possible values, it pop ups them inside the
<emphasis role="bold"><property><div></property></emphasis> element bellow the input.</para>
<figure>
- <title>SuggestionBox component</title>
+ <title><rich:suggestionBox> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/suggestionbox1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/suggestionbox.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -135,7 +135,7 @@
]]></programlisting>
<para>It looks on a page in the following way:</para>
<figure>
- <title>SuggestionBox with ToolTip window</title>
+ <title><rich:suggestionBox> with ToolTip window</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/suggestionbox2.png"/>
@@ -164,7 +164,7 @@
are input, Ajax request is called again, but it submits a value starting from the last
token:</para>
<figure>
- <title>SuggestionBox with chosen word</title>
+ <title><rich:suggestionBox> with chosen word</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/suggestionbox3.png"/>
@@ -225,7 +225,7 @@
<para>It looks on a page in the following way:</para>
<figure>
- <title>SuggestionBox with empty list</title>
+ <title><rich:suggestionBox> with empty list</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/suggestionbox5.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A <property>tab</property> section within a tab panel.</para>
<figure>
- <title>Tab component</title>
+ <title><rich:tab> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tab.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tab.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/tab.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -109,7 +109,7 @@
<para>With this example it's possible to generate the <property>tab panel</property>
with the second disabled and two active <property>tabs</property> (see the picture).</para>
<figure>
- <title>Tab Panel with disabled tab</title>
+ <title><rich:tabPanel> with disabled <rich:tab></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tab2.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A <property>tab panel</property> displaying tabs for grouping content of the panel.</para>
<figure>
- <title>TabPanel component</title>
+ <title><rich:tabPanel> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tabPanel.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/tabPanel.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -134,7 +134,7 @@
]]></programlisting>
<figure>
- <title>TabPanel with right aligned tabs</title>
+ <title><rich:tabPanel> with right aligned tabs</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tabPanel1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toggleControl.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -16,7 +16,7 @@
<emphasis ><property>"stateOrder"</property></emphasis> attributes) is
shown.</para>
<figure>
- <title>ToggleControl component</title>
+ <title><rich:toggleControl> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/toggleControl.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/togglePanel.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -11,7 +11,7 @@
the corresponding <property>toggleControl</property>
(the other is hidden).</para>
<figure>
- <title>TogglePanel component</title>
+ <title><rich:togglePanel> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/togglePanel.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A horizontal bar with Action items on it that accepts any JSF components as children.</para>
<figure>
- <title>Toolbar with action items</title>
+ <title><rich:toolBar> with action items</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBar.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -87,7 +87,7 @@
</itemizedlist>
<para>For example, when setting a separator of a disc type, the following result is produced:</para>
<figure>
- <title>Toolbar with a <emphasis><property>"disc"</property></emphasis> separator</title>
+ <title><rich:toolBar> with a <emphasis><property>"disc"</property></emphasis> separator</title>
<mediaobject>
<imageobject>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A group of items inside a tool bar.</para>
<figure>
- <title>ToolbarGroup with items on it</title>
+ <title><rich:toolbarGroup> with items on it</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/toolbarGroup.png" scalefit="1"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolBarGroup.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -117,7 +117,7 @@
]]></programlisting>
<para>The code result is the following:</para>
<figure>
- <title>Stylized toolBarGroup</title>
+ <title>Stylized <rich:toolBarGroup></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/toolBar3.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>The component used for creation non-modal popup that activated on some event and display some information.
</para>
<figure>
- <title>ToolTip component</title>
+ <title><rich:toolTip> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tooltip1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/toolTip.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -102,7 +102,7 @@
This is the result:
</para>
<figure>
- <title>toolTip component with default content</title>
+ <title><rich:toolTip> component with default content</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/toolTip2.png"/>
@@ -113,7 +113,7 @@
And after <property>toolTip</property> loaded it will be changed to next one:
</para>
<figure>
- <title>toolTip component with loaded content</title>
+ <title><rich:toolTip> component with loaded content</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/toolTip3.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/tree.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/tree.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/tree.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -10,7 +10,7 @@
<para>A component for a tree-like presentation of data. It includes built-in drag and drop
support for its child elements.</para>
<figure>
- <title>Expanded tree with child elements</title>
+ <title>Expanded <rich:tree> with child elements</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/tree1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNode.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>A component is used for designing templates for nodes definition.</para>
<figure>
- <title>TreeNode component</title>
+ <title><rich:treeNode> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/treeNode.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/treeNodesAdaptor.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -12,7 +12,7 @@
</para>
<figure>
- <title>Expanded tree with treeNodesAdaptor</title>
+ <title>Expanded tree with <rich:treeNodesAdaptor></title>
<mediaobject>
<imageobject>
<imagedata fileref="images/treeNodesAdaptor1.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.desc.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -9,7 +9,7 @@
<title>Description</title>
<para>The component presents the Microsoft <property>Virtual Earth map</property> in the JSF applications.</para>
<figure>
- <title>VirtualEarth component</title>
+ <title><rich:virtualEarth> component</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/virtualEarth.png"/>
Modified: trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2008-01-09 18:05:56 UTC (rev 5237)
+++ trunk/docs/userguide/en/src/main/docbook/included/virtualEarth.xml 2008-01-09 18:31:34 UTC (rev 5238)
@@ -99,7 +99,7 @@
<property>"zoom"</property>
</emphasis>= 11.</para>
<figure>
- <title>VirtualEarth initial rendering</title>
+ <title><rich:virtualEarth> initial rendering</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/virtualEarth1.png"/>
Modified: trunk/docs/userguide/en/src/main/resources/images/calendar1a.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/calendar1b.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/dropDownMenu5.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/menuGroup3.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/menuItem2.png
===================================================================
(Binary files differ)
Modified: trunk/docs/userguide/en/src/main/resources/images/orderingList_classes_1.png
===================================================================
(Binary files differ)
17 years
JBoss Rich Faces SVN: r5237 - trunk/sandbox/ui/combobox/src/main/java/org/richfaces/renderkit/images.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-09 13:05:56 -0500 (Wed, 09 Jan 2008)
New Revision: 5237
Removed:
trunk/sandbox/ui/combobox/src/main/java/org/richfaces/renderkit/images/ComboBoxDisableButtonGradient.java
Log:
remove
Deleted: trunk/sandbox/ui/combobox/src/main/java/org/richfaces/renderkit/images/ComboBoxDisableButtonGradient.java
===================================================================
--- trunk/sandbox/ui/combobox/src/main/java/org/richfaces/renderkit/images/ComboBoxDisableButtonGradient.java 2008-01-09 18:01:47 UTC (rev 5236)
+++ trunk/sandbox/ui/combobox/src/main/java/org/richfaces/renderkit/images/ComboBoxDisableButtonGradient.java 2008-01-09 18:05:56 UTC (rev 5237)
@@ -1,17 +0,0 @@
-/**
- *
- */
-package org.richfaces.renderkit.images;
-
-import org.richfaces.renderkit.html.BaseGradient;
-
-/**
- * @author Anton Belevich
- *
- */
-public class ComboBoxDisableButtonGradient extends BaseGradient{
-
- public ComboBoxDisableButtonGradient() {
- super(30, 50, 12, "tableBorderColor", "controlBackgroundColor");
- }
-}
17 years
JBoss Rich Faces SVN: r5236 - in trunk/sandbox/ui/progressBAR/src/main: resources/org/richfaces/renderkit/html/js and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: andrei_exadel
Date: 2008-01-09 13:01:47 -0500 (Wed, 09 Jan 2008)
New Revision: 5236
Modified:
trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java
trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx
Log:
Refactoring according to changes done in component spec.
Modified: trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java 2008-01-09 18:01:00 UTC (rev 5235)
+++ trunk/sandbox/ui/progressBAR/src/main/java/org/richfaces/renderkit/AbstractProgressBarRenderer.java 2008-01-09 18:01:47 UTC (rev 5236)
@@ -133,7 +133,7 @@
writer.startElement(HTML.DIV_ELEM, component);
writer.writeAttribute(HTML.id_ATTRIBUTE, (isAjax ? clientId : clientId
+ ":initialState"), null);
-
+
UIComponent initial = component.getFacet("initial");
if (initial != null) {
renderChild(context, initial);
@@ -157,41 +157,49 @@
String style = (String) component.getAttributes().get("style");
String permanent = (String) component.getAttributes().get("permanent");
- String completeClass = (component.getAttributes().get("completeClass") != null) ? (String) component
- .getAttributes().get("completeClass")
- : ((permanent != null && "true".equals(permanent)) ? "rich-progress-bar-permanent"
- : "rich-progress-bar-completed");
+ if (!(permanent != null && "true".equals(permanent))) {
- String remainClass = (component.getAttributes().get("remainClass") != null) ? (String) component
- .getAttributes().get("remainClass")
- : "rich-progress-bar-remained";
+ String completeClass = (component.getAttributes().get(
+ "completeClass") != null) ? (String) component
+ .getAttributes().get("completeClass")
+ : "rich-progress-bar-completed";
- writer.startElement("div", component);
- getUtils().writeAttribute(writer, "class",
- remainClass + " rich-progress-bar-base");
- getUtils().writeAttribute(writer, "id", clientId + ":remain");
- getUtils().writeAttribute(writer, "style", style);
+ String remainClass = (component.getAttributes().get("remainClass") != null) ? (String) component
+ .getAttributes().get("remainClass")
+ : "rich-progress-bar-remained";
- writer.write(percent);
+ writer.startElement("div", component);
+ getUtils().writeAttribute(writer, "class",
+ remainClass + " rich-progress-bar-base");
+ getUtils().writeAttribute(writer, "id", clientId + ":remain");
+ getUtils().writeAttribute(writer, "style", style);
- writer.endElement("div");
- writer.startElement("div", component);
- getUtils()
- .writeAttribute(writer, "class", "rich-progress-bar-uploaded");
- getUtils().writeAttribute(writer, "id", clientId + ":upload");
- getUtils().writeAttribute(writer, "style",
- style + "; width: " + width + "%;");
+ writer.write(percent);
- writer.startElement("div", component);
- getUtils().writeAttribute(writer, "class",
- completeClass + " rich-progress-bar-base");
- getUtils().writeAttribute(writer, "id", clientId + ":complete");
- getUtils().writeAttribute(writer, "style", style);
+ writer.endElement("div");
+ writer.startElement("div", component);
+ getUtils().writeAttribute(writer, "class",
+ "rich-progress-bar-uploaded");
+ getUtils().writeAttribute(writer, "id", clientId + ":upload");
+ getUtils().writeAttribute(writer, "style",
+ style + "; width: " + width + "%;");
- writer.write(percent);
+ writer.startElement("div", component);
+ getUtils().writeAttribute(writer, "class",
+ completeClass + " rich-progress-bar-base");
+ getUtils().writeAttribute(writer, "id", clientId + ":complete");
+ getUtils().writeAttribute(writer, "style", style);
- writer.endElement("div");
- writer.endElement("div");
+ writer.write(percent);
+
+ writer.endElement("div");
+ writer.endElement("div");
+ } else {
+ writer.startElement("div", component);
+ getUtils().writeAttribute(writer, "class","rich-progress-bar-permanent");
+ getUtils().writeAttribute(writer, "style", style + " width: 100%");
+ writer.endElement("div");
+ }
}
/**
@@ -227,7 +235,7 @@
ResponseWriter writer = context.getResponseWriter();
writer.startElement(HTML.DIV_ELEM, component);
writer.writeAttribute(HTML.id_ATTRIBUTE, clientId, null);
-
+
UIComponent completed = component.getFacet("completed");
if (completed != null) {
renderChild(context, completed);
Modified: trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-01-09 18:01:00 UTC (rev 5235)
+++ trunk/sandbox/ui/progressBAR/src/main/resources/org/richfaces/renderkit/html/js/progressBar.js 2008-01-09 18:01:47 UTC (rev 5236)
@@ -7,7 +7,7 @@
this.id = id;
this.mode = "initial";
},
- getPercent: function () {
+ getProgress: function () {
var d = $(this.id + ":remain");
if (d != null) {
var v = d.innerHTML;
@@ -17,24 +17,33 @@
}
else return null;
},
- setPercent: function (val) {
+ setProgress: function (val) {
var p = val;
if (val != null) {
if (val.indexOf("%") < 0)
val = val + "%";
}
if ($(this.id + ":progressState") != null)
- if (p <= 0) this.switchMode("initial");
- else if (p > 0 && p < 100) this.switchMode("progress");
- else if (p >= 100) this.switchMode("completed");
-
- var d = $(this.id + ":remain");
- if (d != null) d.innerHTML = val;
- d = $(this.id + ":complete");
- if (d != null) d.innerHTML = val;
- d = $(this.id + ":upload");
- if (d != null) d.style.width = val;
+ {
+ if (this.mode == "progress")
+ {
+ var d = $(this.id + ":remain");
+ if (d != null) d.innerHTML = val;
+ d = $(this.id + ":complete");
+ if (d != null) d.innerHTML = val;
+ d = $(this.id + ":upload");
+ if (d != null) d.style.width = val;
+ }
+ }
},
+ enable: function () {
+ this.switchMode("progress");
+ this.setProgress("0");
+ },
+ finish: function () {
+ A4J.AJAX.StopPoll(this.id);
+ this.switchMode("completed");
+ },
switchMode : function (mode) {
switch (mode) {
case "initial" :
@@ -59,10 +68,7 @@
}
},
init : function () {
- var p = this.getPercent();
- if (p <= 0) this.switchMode("initial");
- else if (p > 0 && p < 100) this.switchMode("progress");
- else if (p >= 100) this.switchMode("completed");
+ this.switchMode("initial");
},
hide : function (o) {
if (o != null)
Modified: trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx
===================================================================
--- trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx 2008-01-09 18:01:00 UTC (rev 5235)
+++ trunk/sandbox/ui/progressBAR/src/main/templates/org/richfaces/progressBar.jspx 2008-01-09 18:01:47 UTC (rev 5236)
@@ -19,6 +19,7 @@
<![CDATA[
String mode = (String) component.getAttributes().get("mode");
boolean isAjax = !(mode != null && "client".equalsIgnoreCase(mode));
+ Boolean enabled = (Boolean) component.getAttributes().get("enabled");
Number value = (Number)component.getAttributes().get("value");
Integer percent = value.intValue();
variables.setVariable("percent",value);
@@ -32,9 +33,9 @@
<jsp:scriptlet>
<![CDATA[
if (isAjax) {
-if (percent <= 0) {
+if (!enabled && percent == 0) {
encodeInitialState(context, component, "true");
-} else if (percent >= 100) {
+} else if (!enabled && percent >= 100 ) {
encodeCompletedState(context, component, "true");
} else {
]]>
@@ -49,8 +50,8 @@
}else {
]]>
</jsp:scriptlet>
-<div class="rich-progress-bar #{styleClass}" style="#{style}" id="#{clientId}">
- <div id="#{clientId}:progressState">
+<div id="#{clientId}">
+ <div id="#{clientId}:progressState" class="rich-progress-bar #{styleClass}" style="#{style}">
<f:call name="encodeProgressState" />
</div>
<f:call name="encodeInitialState">
17 years
JBoss Rich Faces SVN: r5235 - in trunk/sandbox/ui/combobox/src/main: resources/org/richfaces/renderkit/html/scripts and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-09 13:01:00 -0500 (Wed, 09 Jan 2008)
New Revision: 5235
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
Log:
rename cb->combobox classes
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss 2008-01-09 17:32:01 UTC (rev 5234)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/css/combobox.xcss 2008-01-09 18:01:00 UTC (rev 5235)
@@ -8,16 +8,26 @@
-.rich-cb-item-normal {
+.rich-combobox-item-normal {
}
-.rich-cb-font {
+.rich-combobox-font {
}
-.rich-cb-font-disabled {
+.rich-combobox-font-disabled {
}
-.rich-cb-field-disabled {
+.rich-combobox-input-default {
+}
+
+.rich-combobox-input {
+}
+
+.rich-combobox-input-disabled {
+}
+
+
+.rich-combobox-input-default-disabled {
position : absolute;
top : 0px; left : 0;
padding-right :20px;
@@ -28,91 +38,90 @@
background-repeat:repeat-x;
}
-.rich-cb-list {
+.rich-combobox-input-default {
+ position : absolute;
+ top : 0px; left : 0px;
+ padding-right :20px;
+ padding-left :3px;
+ margin : 0px;
+ border : 1px solid #c0c0c0;
+ background-position:left top;
+ background-repeat:repeat-x;
+}
+
+.rich-combobox-list {
z-index: 1000;
overflow: auto;
white-space:nowrap;
}
-.rich-cb-list-position {
+.rich-combobox-list-position {
position : absolute;
}
-.rich-cb-list-decoration {
+.rich-combobox-list-decoration {
border : 1px solid; padding : 0px;
}
-.rich-cb-list-scroll {
+.rich-combobox-list-scroll {
overflow-y : auto;
overflow-x : hidden;
}
-.rich-cb-list-cord {
+.rich-combobox-list-cord {
position : relative;
}
-.rich-cb-item {
+.rich-combobox-item {
padding : 2px; white-space : nowrap;
}
-.rich-cb-item-selected {
+.rich-combobox-item-selected {
padding : 1px;
- background-color : #DFE8F6;
border : 1px dotted;
cursor:pointer;
}
-.rich-cb-width {
+.rich-combobox-width {
width : 150px;
}
-.rich-cb-strut {
+.rich-combobox-strut {
position : relative;
visibility : hidden;
margin : 0px; padding : 2px;
}
-.rich-cb-shell {
+.rich-combobox-shell {
position : relative;
}
-.rich-cb-field {
+.rich-combobox-button {
position : absolute;
- top : 0px; left : 0px;
- padding-right :20px;
- padding-left :3px;
- margin : 0px;
- border : 1px solid #c0c0c0;
- background-position:left top;
- background-repeat:repeat-x;
-}
-
-.rich-cb-button {
- position : absolute;
top : 0px;
right : 0px; //left: fullWidth - 17px;
width : 17px;
margin : 0px;
- border : 1px solid #C0C0C0;
+ border : 1px solid;
}
-.rich-cb-button-bg {
+.rich-combobox-button-bg {
background : top repeat-x;
cursor : pointer;
}
-.rich-cb-button-bg-press {
+.rich-combobox-button-bg-press {
background : top repeat-x;
cursor : pointer;
}
-.rich-cb-button-arrow {
+.rich-combobox-button-arrow {
background : center no-repeat; cursor : pointer;
}
-.rich-cb-button-arrow-disabled {
+.rich-combobox-button-arrow-disabled {
background : center no-repeat; cursor : pointer;
}
@@ -120,82 +129,74 @@
</f:verbatim>
- <u:selector name=".rich-cb-button-bg">
+ <u:selector name=".rich-combobox-button-bg">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxButtonGradient" />
</u:style>
<u:style name="background-color" skin="tabBackgroundColor"/>
</u:selector>
- <u:selector name=".rich-cb-button-bg-press">
+ <u:selector name=".rich-combobox-button-bg-press">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxButtonPressGradient" />
</u:style>
<u:style name="background-color" skin="tabBackgroundColor"/>
</u:selector>
- <u:selector name=".rich-cb-button-arrow">
+ <u:selector name=".rich-combobox-button-arrow">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxArrowImage" />
</u:style>
</u:selector>
- <u:selector name=".rich-cb-button-arrow-disabled">
+ <u:selector name=".rich-combobox-button-arrow-disabled">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxArrowImageDisable" />
</u:style>
</u:selector>
- <u:selector name=".rich-cb-button">
+ <u:selector name=".rich-combobox-button">
<u:style name="border-color" skin="panelBorderColor"/>
</u:selector>
- <u:selector name=".rich-cb-font">
+ <u:selector name=".rich-combobox-font">
<u:style name="font-size" skin="generalSizeFont"/>
<u:style name="font-family" skin="generalFamilyFont"/>
<u:style name="color" skin="generalTextColor"/>
</u:selector>
- <u:selector name=".rich-cb-font-disabled">
+ <u:selector name=".rich-combobox-font-disabled">
<u:style name="color" skin="tabDisabledTextColor"/>
<u:style name="font-family" skin="headerFamilyFont"/>
<u:style name="font-size" skin="headerSizeFont"/>
</u:selector>
- <u:selector name=".rich-cb-font-disabled">
- <u:style name="color" skin="tabDisabledTextColor"/>
- <u:style name="font-family" skin="headerFamilyFont"/>
- <u:style name="font-size" skin="headerSizeFont"/>
- </u:selector>
-
- <u:selector name=".rich-cb-field">
+ <u:selector name=".rich-combobox-input-default">
<u:style name="background-image">
<f:resource f:key="org.richfaces.renderkit.images.ComboBoxInputGradient" />
</u:style>
<u:style name="border-color" skin="panelBorderColor"/>
</u:selector>
- <u:selector name=".rich-cb-item">
+ <u:selector name=".rich-combobox-input-default-disabled">
+ <u:style name="border-color" skin="tabBackgroundColor"/>
+ </u:selector>
+
+ <u:selector name=".rich-combobox-item">
<u:style name="font-size" skin="generalSizeFont"/>
<u:style name="font-family" skin="generalFamilyFont"/>
<u:style name="color" skin="generalTextColor"/>
</u:selector>
- <u:selector name=".rich-cb-item-selected">
+ <u:selector name=".rich-combobox-item-selected">
<u:style name="border-color" skin="generalTextColor"/>
+ <u:style name="background-color" skin="additionalBackgroundColor" />
</u:selector>
- <u:selector name=".rich-cb-list-decoration">
+ <u:selector name=".rich-combobox-list-decoration">
<u:style name="border-color" skin="panelBorderColor"/>
<u:style name="background" skin="tableBackgroundColor"/>
</u:selector>
+
- <u:selector name=".rich-cb-item-selected">
- <u:style name="border-color" skin="generalTextColor"/>
- </u:selector>
-
- <u:selector name=".rich-cb-field-disabled">
- <u:style name="border-color" skin="tabBackgroundColor"/>
- </u:selector>
-
</f:template>
Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 17:32:01 UTC (rev 5234)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-09 18:01:00 UTC (rev 5235)
@@ -166,13 +166,13 @@
},
doActive : function() {
- this.button.className = "rich-cb-button rich-cb-font rich-cb-button-arrow";
- this.field.className = "rich-cb-width rich-cb-font rich-cb-field"; //FIXME
+ this.button.className = "rich-combobox-button rich-combobox-font rich-combobox-button-arrow";
+ this.field.className = "rich-combobox-font rich-combobox-input-default rich-combobox-input"; //FIXME
},
doDisable : function() {
- this.button.className = "rich-cb-button rich-cb-font rich-cb-button-arrow-disabled";
- this.field.className = "rich-cb-width rich-cb-font-disabled rich-cb-field-disabled"; //FIXME
+ this.button.className = "rich-combobox-button rich-combobox-font rich-combobox-button-arrow-disabled";
+ this.field.className = "rich-combobox-font-disabled rich-combobox-input-default-disabled rich-combobox-input-disabled"; //FIXME
}
};
@@ -460,6 +460,6 @@
]
Richfaces.ComboBoxList.CLASSES = {
- ITEM : {NORMAL : "rich-cb-item rich-cb-item-normal", SELECTED : "rich-cb-item rich-cb-item-selected"},
+ ITEM : {NORMAL : "rich-combobox-item rich-combobox-item-normal", SELECTED : "rich-combobox-item rich-combobox-item-selected"},
LIST : {}
}
\ No newline at end of file
Modified: trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-09 17:32:01 UTC (rev 5234)
+++ trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-09 18:01:00 UTC (rev 5235)
@@ -51,18 +51,18 @@
]]>
</jsp:scriptlet>
- <div id="#{clientId}" class="rich-cb-font rich-cb-shell" style="width:#{listWidth}">
- <input id="comboboxField#{clientId}" class="rich-cb-font rich-cb-field" type="text" size="#{inputSize}" autocomplete="off" style="width:#{listWidth}">
+ <div id="#{clientId}" class="rich-combobox-font rich-combobox-shell" style="width:#{listWidth}">
+ <input id="comboboxField#{clientId}" class="rich-combobox-font rich-combobox-input-default rich-combobox-input" type="text" size="#{inputSize}" autocomplete="off" style="width:#{listWidth}">
</input>
- <input id="comboBoxButtonBG#{clientId}" readonly="true" type="text" value="" class="rich-cb-button rich-cb-font rich-cb-button-bg">
+ <input id="comboBoxButtonBG#{clientId}" readonly="true" type="text" value="" class="rich-combobox-button rich-combobox-font rich-combobox-button-bg">
</input>
- <input id="comboboxButton#{clientId}" readonly="true" type="text" value="" class="rich-cb-button rich-cb-font rich-cb-button-arrow"
- onmousedown="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-cb-button rich-cb-font rich-cb-button-bg-press'"
- onmouseup="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-cb-button rich-cb-font rich-cb-button-bg'" >
+ <input id="comboboxButton#{clientId}" readonly="true" type="text" value="" class="rich-combobox-button rich-combobox-font rich-combobox-button-arrow"
+ onmousedown="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-button rich-combobox-font rich-combobox-button-bg-press'"
+ onmouseup="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-button rich-combobox-font rich-combobox-button-bg'" >
</input>
- <input type="text" class="rich-cb-strut rich-cb-font" style="width:#{listWidth}">
+ <input type="text" class="rich-combobox-strut rich-combobox-font" style="width:#{listWidth}">
</input>
- <div id="listParent#{clientId}" style="display:none;" class="rich-cb-list-cord rich-cb-list-scroll rich-cb-list-decoration rich-cb-list-position">
+ <div id="listParent#{clientId}" style="display:none;" class="rich-combobox-list-cord rich-combobox-list-scroll rich-combobox-list-decoration rich-combobox-list-position">
<div id="list#{clientId}">
<f:call name="encodeItems"/>
</div>
17 years