JBoss Rich Faces SVN: r5394 - branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-15 13:17:52 -0500 (Tue, 15 Jan 2008)
New Revision: 5394
Modified:
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js
branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ShuttleUtils.js
Log:
components were changed
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js 2008-01-15 17:42:12 UTC (rev 5393)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js 2008-01-15 18:17:52 UTC (rev 5394)
@@ -1,12 +1,14 @@
if(!window.Richfaces) window.Richfaces = {};
-Richfaces.disableSelectionText = function(e) {
- e = window.event||e;
- if (e.srcElement) {
- if (e.srcElement.tagName) {
- var tagName = e.srcElement.tagName.toUpperCase();
-
- if (tagName != "INPUT" && tagName != "TEXTAREA" /* any items more? */) {
- return false;
+Richfaces.disableSelectionText = function(target) {
+ target.onselectstart = function(e) {
+ e = window.event||e;
+ if (e.srcElement) {
+ if (e.srcElement.tagName) {
+ var tagName = e.srcElement.tagName.toUpperCase();
+
+ if (tagName != "INPUT" && tagName != "TEXTAREA" /* any items more? */) {
+ return false;
+ }
}
}
}
@@ -169,7 +171,7 @@
this.setFocus();
- this.saveState();
+ //this.saveState();
//this.layoutManager.widthSynchronization();
}
},
@@ -191,7 +193,7 @@
Event.stop(event);
}
this.activeItem.item.doActive();
- this.saveState();
+ //this.saveState();
break;
}
},
@@ -207,7 +209,7 @@
this.autoScrolling(action, event);
- this.saveState();
+ //this.saveState();
//this.layoutManager.widthSynchronization();
},
@@ -286,7 +288,7 @@
/*if (this.activeItem && !this.getSelectItemByNode(this.activeItem)._selected) {
Richfaces.SelectItems.doNormal(this.activeItem);
}*/
- this.saveState();
+ //this.saveState();
},
/**
@@ -315,20 +317,17 @@
var rows = this.shuttleTbody.rows;
for (var i = startIndex; i <= endIndex; i++) {
rows[i].item.doSelect();
- //if (this.selectedItems.indexOf(rows[i]) == -1) {
- this.selectedItems.push(rows[i]);
- //}
+ this.selectedItems.push(rows[i]);
}
-
- this.saveState();
+ //this.saveState();
},
resetMarked : function() {
- var rows = this.shuttleTbody.rows;
- for (var i = 0; i < rows.length; i++) {
+ var rows = this.selectedItems;
+ var length = rows.length;
+ for (var i = 0; i < length; i++) {
var shuttleItem = rows[i];
shuttleItem.item.doNormal();
- //this.getSelectItemByNode(shuttleItem)._selected = false; //FIXME
}
this.selectedItems.length = 0;
@@ -408,15 +407,15 @@
return true;
}
return false;
- },
+ }//,
- saveState : function() {
+ /*saveState : function() {
for (var i = 0; i < this.shuttleItems.length; i++) {
var item = this.shuttleItems[i];
item.saveState();
}
- }
+ }*/
}
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js 2008-01-15 17:42:12 UTC (rev 5393)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/OrderingList.js 2008-01-15 18:17:52 UTC (rev 5394)
@@ -88,7 +88,7 @@
moveActiveItem : function($super, action, event) {
$super(action, event);
- this.saveState();
+ //this.saveState();
this.controlListManager();
},
@@ -137,7 +137,7 @@
this.container.fire("rich:onorderchanged", {});
this.controlListManager();
- this.saveState();
+ //this.saveState();
}
},
@@ -168,7 +168,7 @@
Event.stop(event);
}
this.activeItem.item.doActive();
- this.saveState();
+ //this.saveState();
this.controlListManager();
break;
}
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js 2008-01-15 17:42:12 UTC (rev 5393)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/SelectItem.js 2008-01-15 18:17:52 UTC (rev 5394)
@@ -28,6 +28,8 @@
this.addClass(row, classes.ROW.ACTIVE, classes.CELL.ACTIVE);
this.active = true;
+
+ this.saveState();
},
doSelect : function() {
@@ -35,20 +37,30 @@
var classes = this.CLASSES;
this.addClass(row, classes.ROW.SELECTED, classes.CELL.SELECTED);
- this.removeClass(row, classes.ROW.ACTIVE, classes.CELL.ACTIVE);
+ if (this.active) {
+ this.removeClass(row, classes.ROW.ACTIVE, classes.CELL.ACTIVE);
+ }
this.selected = true;
+
+ this.saveState();
},
doNormal : function() {
var row = this._node;
var classes = this.CLASSES;
- this.removeClass(row, classes.ROW.SELECTED, classes.CELL.SELECTED);
- this.removeClass(row, classes.ROW.ACTIVE, classes.CELL.ACTIVE);
+ if (this.active) {
+ this.removeClass(row, classes.ROW.ACTIVE, classes.CELL.ACTIVE);
+ }
+ if (this.selected) {
+ this.removeClass(row, classes.ROW.SELECTED, classes.CELL.SELECTED);
+ }
this.active = false;
this.selected = false;
+
+ this.saveState();
},
isSelected : function() {
Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ShuttleUtils.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ShuttleUtils.js 2008-01-15 17:42:12 UTC (rev 5393)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ShuttleUtils.js 2008-01-15 18:17:52 UTC (rev 5394)
@@ -48,11 +48,10 @@
Array.prototype.remove = function(object) {
var index = this.indexOf(object, 0, this.length);
+ if (index == -1) return;
if (index == 0) {
this.shift();
} else {
this.splice(index, 1);
}
}
-
-
17 years
JBoss Rich Faces SVN: r5393 - trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-01-15 12:42:12 -0500 (Tue, 15 Jan 2008)
New Revision: 5393
Modified:
trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/scripts/data-table.js
Log:
SortControl breaking suggestionBox fixed
Modified: trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/scripts/data-table.js
===================================================================
--- trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/scripts/data-table.js 2008-01-15 17:18:36 UTC (rev 5392)
+++ trunk/ui/dataTable/src/main/resources/org/richfaces/renderkit/html/scripts/data-table.js 2008-01-15 17:42:12 UTC (rev 5393)
@@ -1,4 +1,4 @@
-if (!window.RichFaces) var RichFaces = {};
+if (!window.RichFaces) window.RichFaces = {};
17 years
JBoss Rich Faces SVN: r5392 - in trunk/sandbox/ui/combobox/src/main: templates and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-01-15 12:18:36 -0500 (Tue, 15 Jan 2008)
New Revision: 5392
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
Log:
component's structure is changed
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-15 16:56:09 UTC (rev 5391)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-15 17:18:36 UTC (rev 5392)
@@ -3,7 +3,7 @@
Richfaces.ComboBox.prototype = {
- initialize: function(combobox, listId, parentListId, fieldId, buttonId, buttonBGId, classes,
+ initialize: function(combobox, listId, parentListId, fieldId, buttonId, buttonBGId, iframeId, classes,
listWidth, listHeight, itemsText, directInputSuggestions, filterNewValue,
selectFirstOnUpdate, onlistcall, onselected, defaultMessage, isDisabled, value,
showDelay, hideDelay) {
@@ -22,7 +22,7 @@
fieldDem.height = this.field.offsetHeight;
listWidth = (!listWidth) ? this.getCurrentWidth() : listWidth;
- this.comboList = new Richfaces.ComboBoxList(listId, parentListId, selectFirstOnUpdate, classes.COMBO_LIST, listWidth,
+ this.comboList = new Richfaces.ComboBoxList(listId, parentListId, iframeId, selectFirstOnUpdate, classes.COMBO_LIST, listWidth,
listHeight, itemsText, onlistcall, fieldDem, showDelay, hideDelay);
this.defaultMessage = defaultMessage;
if (value) {
@@ -341,11 +341,12 @@
Richfaces.ComboBoxList = Class.create();
Richfaces.ComboBoxList.prototype = {
- initialize: function(listId, parentListId, selectFirstOnUpdate, classes, width, height, itemsText, onlistcall, fieldXY,
+ initialize: function(listId, parentListId, iframeId, selectFirstOnUpdate, classes, width, height, itemsText, onlistcall, fieldXY,
showDelay, hideDelay) {
this.list = $(listId);
this.listParent = $(parentListId);
+ this.iframe = $(iframeId);
this.itemsText = itemsText;
@@ -480,12 +481,12 @@
},
setWidth : function(width) {
- var iframe = this.listParent.childNodes[0];
- var positionElem = this.listParent.childNodes[1];
+ //var positionElem = this.listParent.childNodes[1];
+ var positionElem = this.listParent.childNodes[0];
var combobox = this.listParent.parentNode;
combobox.style.width = width;
- iframe.style.width = width;
+ this.iframe.style.width = width;
positionElem.style.width = width;
this.list.style.width = parseInt(width) - Richfaces.getBorderWidth(positionElem.firstChild, "lr") - Richfaces.getPaddingWidth(positionElem.firstChild, "lr");
@@ -590,7 +591,7 @@
resetState : function() {
var tempList = this.list.cloneNode(false);
- this.listParent.childNodes[1].firstChild.replaceChild(tempList, this.list);
+ this.listParent.childNodes[0].firstChild.replaceChild(tempList, this.list);
this.list = $(tempList.id);
this.activeItem = null;
this.isList = false;
Modified: trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-15 16:56:09 UTC (rev 5391)
+++ trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-15 17:18:36 UTC (rev 5392)
@@ -193,7 +193,7 @@
}
]]>
</jsp:scriptlet>
- <div id="#{clientId}" class="rich-combobox-font rich-combobox-shell #{styleClass}" style="width:#{listWidth}; #{style}"
+ <div id="#{clientId}" class="rich-combobox-font rich-combobox-shell #{styleClass}" style="width:#{listWidth}; z-index:1;#{style}"
x:passThruWithExclusions="value,name,type,id,styleClass,class,style,size,autocomplete,disabled,onchange">
<div class="rich-combobox-font rich-combobox-shell" style="width:#{width};z-index:1;">
<input id="comboboxField#{clientId}"
@@ -214,14 +214,13 @@
<input type="text" class="rich-combobox-strut rich-combobox-font" style="width:#{width}"/>
</div>
-
- <div id="listParent#{clientId}" class="rich-combobox-list-cord #{listClass}" style="display:none; #{listStyle};">
- <iframe class="rich-combobox-list-scroll rich-combobox-list-position" frameborder="0" style="width:#{listWidth};z-index:2;background-color:white;"/>
- <div id="listPosition#{clientId}" class="rich-combobox-list-position" style="width:#{listWidth};z-index:3;">
- <div id="listDecoration#{clientId}" class="rich-combobox-list-decoration">
- <div id="list#{clientId}" class="rich-combobox-list-scroll" style="width:#{listWidth};">
- <f:call name="encodeItems"/>
- </div>
+ </div>
+ <iframe id="iframe#{clientId}" class="rich-combobox-list-scroll rich-combobox-list-position" frameborder="0" style="width:#{listWidth};z-index:2;background-color:white;"/>
+ <div id="listParent#{clientId}" class="rich-combobox-list-cord #{listClass}" style="display:none; #{listStyle};z-index:3;">
+ <div id="listPosition#{clientId}" class="rich-combobox-list-position" style="width:#{listWidth};">
+ <div id="listDecoration#{clientId}" class="rich-combobox-list-decoration">
+ <div id="list#{clientId}" class="rich-combobox-list-scroll" style="width:#{listWidth};">
+ <f:call name="encodeItems"/>
</div>
</div>
</div>
@@ -275,6 +274,7 @@
"comboboxField#{clientId}",
"comboboxButton#{clientId}",
"comboBoxButtonBG#{clientId}",
+ "iframe#{clientId}",
Richfaces.ComboBox.CLASSES,
"#{listWidth}", "#{listHeight}",
#{this:getItemsTextAsJSArray(context, component)},
17 years
JBoss Rich Faces SVN: r5391 - branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2008-01-15 11:56:09 -0500 (Tue, 15 Jan 2008)
New Revision: 5391
Modified:
branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
Log:
RF-1852
Modified: branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
===================================================================
--- branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-01-15 16:46:39 UTC (rev 5390)
+++ branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-01-15 16:56:09 UTC (rev 5391)
@@ -698,7 +698,7 @@
if (i==6) styleClass+=" rich-right-cell";
this.dayCellClassName.push(styleClass);
- htmlTextWeek+='<td class="'+styleClass+'" id="'+this.DATE_ELEMENT_ID+p+'"'+
+ htmlTextWeek+='<td class="'+styleClass+'" id="'+this.DATE_ELEMENT_ID+p+'" '+
eventsStr+
'>'+(this.customDayListMarkup ? '<div class="rich-calendar-cell-div'+(this.params.dayCellClass ? ' '+this.params.dayCellClass : '')+'"></div>' : '')+'</td>';
p++;
17 years
JBoss Rich Faces SVN: r5390 - trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2008-01-15 11:46:39 -0500 (Tue, 15 Jan 2008)
New Revision: 5390
Modified:
trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
Log:
RF-1852
Modified: trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
===================================================================
--- trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-01-15 15:58:34 UTC (rev 5389)
+++ trunk/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2008-01-15 16:46:39 UTC (rev 5390)
@@ -698,7 +698,7 @@
if (i==6) styleClass+=" rich-right-cell";
this.dayCellClassName.push(styleClass);
- htmlTextWeek+='<td class="'+styleClass+'" id="'+this.DATE_ELEMENT_ID+p+'"'+
+ htmlTextWeek+='<td class="'+styleClass+'" id="'+this.DATE_ELEMENT_ID+p+'" '+
eventsStr+
'>'+(this.customDayListMarkup ? '<div class="rich-calendar-cell-div'+(this.params.dayCellClass ? ' '+this.params.dayCellClass : '')+'"></div>' : '')+'</td>';
p++;
17 years
JBoss Rich Faces SVN: r5389 - trunk/docs/userguide/en/src/main/resources/css.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-01-15 10:58:34 -0500 (Tue, 15 Jan 2008)
New Revision: 5389
Modified:
trunk/docs/userguide/en/src/main/resources/css/html.css
Log:
JBDS-224 -add box for "tip"
Modified: trunk/docs/userguide/en/src/main/resources/css/html.css
===================================================================
--- trunk/docs/userguide/en/src/main/resources/css/html.css 2008-01-15 15:56:12 UTC (rev 5388)
+++ trunk/docs/userguide/en/src/main/resources/css/html.css 2008-01-15 15:58:34 UTC (rev 5389)
@@ -140,7 +140,19 @@
}
+DIV.tip {
+ BORDER: #CECECE 1px solid; PADDING: 3px 10px 10px 50px; line-height : 14px; MARGIN: 10px 0px 10px 0px; FONT-SIZE: 11px; WIDTH: 500px; BACKGROUND-COLOR: #CFE3FF; background-repeat : no-repeat; background-position :top left;
+}
+DIV.tip *{
+ line-height : 14px;
+}
+
+.tip pre.XML {
+PADDING: 1px 1px 1px 10px;
+
+}
+
TABLE {
BORDER: #cccccc 1px solid; FONT-SIZE: 11px; BORDER-COLLAPSE: collapse; border-spacing: 0; empty-cells: hide; margin-bottom : 10px;
}
17 years
JBoss Rich Faces SVN: r5388 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-01-15 10:56:12 -0500 (Tue, 15 Jan 2008)
New Revision: 5388
Modified:
trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml
Log:
http://jira.jboss.com/jira/browse/RF-810 - language is corrected
Modified: trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml 2008-01-15 15:55:13 UTC (rev 5387)
+++ trunk/docs/userguide/en/src/main/docbook/included/changeExpandListener.xml 2008-01-15 15:56:12 UTC (rev 5388)
@@ -29,7 +29,6 @@
</tgroup>
</table>
-
<section>
<title>Creating the Component with a Page Tag</title>
<para>Simple Component definition on a page:</para>
@@ -117,5 +116,4 @@
component isn't visual.</para>
</section>
-
</chapter>
\ No newline at end of file
17 years
JBoss Rich Faces SVN: r5387 - in trunk/sandbox/ui/combobox/src/main: templates and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-15 10:55:13 -0500 (Tue, 15 Jan 2008)
New Revision: 5387
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
Log:
fix pressed background
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-15 15:54:39 UTC (rev 5386)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-15 15:55:13 UTC (rev 5387)
@@ -79,10 +79,14 @@
},
buttonMouseUpHandler : function(e) {
- this.field.focus();
+ this.buttonBG.className = "rich-combobox-font rich-combobox-button-background rich-combobox-button";
+ this.button.className = this.classes.BUTTON.CLASSES.ACTIVE + " rich-combobox-button-hovered";
+ this.field.focus();
},
buttonMousedownHandler : function(e) {
+ this.buttonBG.className = "rich-combobox-font rich-combobox-button-pressed-background rich-combobox-button";
+ this.button.className = this.classes.BUTTON.CLASSES.ACTIVE + " rich-combobox-button-hovered";
this.comboList.isList = true;
},
@@ -100,6 +104,7 @@
},
buttonMouseOutHandler : function(e) {
+ window.status = "mouseout";
var classCss = this.classes.BUTTON.CLASSES;
var iconStyles = this.classes.BUTTONICON.STYLE;
@@ -298,7 +303,6 @@
this.button.style.backgroundImage = iconStyles.ACTIVE;
this.field.className = this.classes.FIELD.CLASSES.ACTIVE;
- this.buttonBG.className = this.classes.BUTTONBG.CLASSES.ACTIVE;
this.isDisabled = false;
},
Modified: trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-15 15:54:39 UTC (rev 5386)
+++ trunk/sandbox/ui/combobox/src/main/templates/combobox.jspx 2008-01-15 15:55:13 UTC (rev 5387)
@@ -210,9 +210,7 @@
/>
<input id="comboBoxButtonBG#{clientId}" readonly="true" type="text" value="" class="rich-combobox-font-inactive rich-combobox-button-background rich-combobox-button-inactive"/>
<input id="comboboxButton#{clientId}" readonly="true" disabled="#{disabled}" type="text" value="" style="#{buttonStyle}; background-image: #{buttonIconNormal};"
- class="rich-combobox-font-inactive rich-combobox-button-icon-inactive rich-combobox-button-inactive #{buttonDisabledClass}"
- onmousedown="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-font rich-combobox-button-pressed-background rich-combobox-button';"
- onmouseup="document.getElementById('comboBoxButtonBG#{clientId}').className='rich-combobox-font rich-combobox-button-background rich-combobox-button';"/>
+ class="rich-combobox-font-inactive rich-combobox-button-icon-inactive rich-combobox-button-inactive #{buttonDisabledClass}"/>
<input type="text" class="rich-combobox-strut rich-combobox-font" style="width:#{width}"/>
</div>
17 years
JBoss Rich Faces SVN: r5386 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-01-15 10:54:39 -0500 (Tue, 15 Jan 2008)
New Revision: 5386
Modified:
trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
Log:
http://jira.jboss.com/jira/browse/RF-811 -added infa on facets
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-01-15 15:49:24 UTC (rev 5385)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-01-15 15:54:39 UTC (rev 5386)
@@ -71,7 +71,7 @@
<section>
<title>Details of Usage</title>
<para> The component represents on a page as a scrollable table with some fixed (non-scrollable)
- rows (header, footer) and columns. Columns of the table are optionally resizable. Resizing is
+ rows ( with header and footer) and columns. Like other tables <rich:scrollableDataTable> also has optional footer and header that could be implemented using the corresponding facets. Columns of the table are optionally resizable. Resizing is
available using "drag and drop" of the column vertical borders. There is possibility to expand
or collapse the columns through JS API on the client side. You can define the number of the
fixed columns from the left side using attribute <emphasis>
17 years
JBoss Rich Faces SVN: r5385 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-01-15 10:49:24 -0500 (Tue, 15 Jan 2008)
New Revision: 5385
Modified:
trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml
Log:
http://jira.jboss.com/jira/browse/RF-811 -language verification
Modified: trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml 2008-01-15 15:46:29 UTC (rev 5384)
+++ trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.desc.xml 2008-01-15 15:49:24 UTC (rev 5385)
@@ -9,7 +9,7 @@
<section>
<title>Description</title>
<para>The <emphasis role="bold"><property><rich:nodeSelectListener></property></emphasis>
- represents an action listener method that will be notified after selection of node.
+ represents an action listener method that will be notified after selection of a node.
</para>
</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml 2008-01-15 15:46:29 UTC (rev 5384)
+++ trunk/docs/userguide/en/src/main/docbook/included/nodeSelectListener.xml 2008-01-15 15:49:24 UTC (rev 5385)
@@ -29,7 +29,6 @@
</tgroup>
</table>
-
<section>
<title>Creating the Component with a Page Tag</title>
<para>Simple Component definition on a page:</para>
@@ -68,7 +67,7 @@
<title>Details of usage</title>
<para>
-The <property><rich:nodeSelectListener></property> is used as nested tag with <property><rich:tree></property>
+The <property><rich:nodeSelectListener></property> is used as a nested tag with <property><rich:tree></property>
and <property><rich:treeNode></property> components.
</para>
<para>
17 years