[richfaces-svn-commits] JBoss Rich Faces SVN: r6433 - trunk/sandbox/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Thu Feb 28 12:49:23 EST 2008
Author: vmolotkov
Date: 2008-02-28 12:49:23 -0500 (Thu, 28 Feb 2008)
New Revision: 6433
Modified:
trunk/sandbox/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
Log:
openOnEdit attribute was added
Modified: trunk/sandbox/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
===================================================================
--- trunk/sandbox/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-02-28 17:42:21 UTC (rev 6432)
+++ trunk/sandbox/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-02-28 17:49:23 UTC (rev 6433)
@@ -23,7 +23,11 @@
} else {
this.tempValueKeeper.focus();
}
- if (this.attributes.openOnEdit && !this.comboList.isList) {
+ },
+
+ startEditableState : function($super, textSize) {
+ $super(textSize);
+ if (this.attributes.openOnEdit) {
this.comboList.showWithDelay();
}
},
More information about the richfaces-svn-commits
mailing list