Author: abelevich
Date: 2008-03-18 13:12:14 -0400 (Tue, 18 Mar 2008)
New Revision: 6923
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
Log:
rename inputProcessing method to the save for spec compatibility
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js
===================================================================
---
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-03-18
17:11:23 UTC (rev 6922)
+++
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselect.js 2008-03-18
17:12:14 UTC (rev 6923)
@@ -70,7 +70,7 @@
this.comboList.hideWithDelay();
}
if (this.attributes.showControls) {
- this.inputProcessing();
+ this.save();
}
this.comboList.isList = false;
/*this.comboList.hideWithDelay();*/
@@ -108,7 +108,7 @@
tmpValueKeyDownHandlerIn : function(event) {
switch (event.keyCode) {
case Event.KEY_RETURN :
- this.inputProcessing();
+ this.save();
this.comboList.hideWithDelay();
Event.stop(event);
break;
@@ -126,7 +126,7 @@
}
},
- inputProcessing : function($super) {
+ save : function($super) {
if (this.comboList.activeItem) {
var userValue = this.comboList.activeItem.innerHTML;
this.tempValueKeeper.value = userValue;