Author: abelevich
Date: 2011-02-03 15:13:51 -0500 (Thu, 03 Feb 2011)
New Revision: 21434
Modified:
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/select.js
Log:
RF-10164 select: inconsistency of usage arrow button and showPopup api method.
Modified: trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/select.js
===================================================================
---
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/select.js 2011-02-03
19:54:01 UTC (rev 21433)
+++
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/select.js 2011-02-03
20:13:51 UTC (rev 21434)
@@ -73,7 +73,7 @@
__onBtnMouseDown: function(e) {
if(!this.popupList.isVisible()) {
this.__updateItems();
- this.showPopup();
+ this.__showPopup();
} else {
this.hidePopup();
}
@@ -107,7 +107,7 @@
e.preventDefault();
if(!visible) {
this.__updateItems();
- this.showPopup();
+ this.__showPopup();
} else {
this.popupList.__selectNext() ;
}
@@ -160,7 +160,7 @@
}
if(!this.popupList.isVisible()) {
- this.showPopup();
+ this.__showPopup();
}
}
},
@@ -253,7 +253,7 @@
}
},
- showPopup: function() {
+ __showPopup: function() {
this.popupList.show();
},
Show replies by date