Author: nbelaevski
Date: 2009-04-22 10:43:05 -0400 (Wed, 22 Apr 2009)
New Revision: 13765
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
Log:
https://jira.jboss.org/jira/browse/RF-6896
Modified:
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
===================================================================
---
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2009-04-22
14:32:52 UTC (rev 13764)
+++
trunk/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2009-04-22
14:43:05 UTC (rev 13765)
@@ -2,7 +2,7 @@
Richfaces.InplaceSelectList = Class.create(Richfaces.ComboBoxList, {
initialize : function($super, listId, parentListId, selectFirstOnUpdate, userStyles,
commonStyles, width, height, itemsText, onlistcall, fieldId, shadowId, showDelay,
hideDelay, value) {
this.classes = Richfaces.mergeStyles(userStyles, commonStyles);
- $super(listId, parentListId, selectFirstOnUpdate, null, this.classes, width, height,
itemsText, onlistcall, fieldId, shadowId, showDelay, hideDelay);
+ $super(listId, parentListId, selectFirstOnUpdate, null, this.classes, width, height,
itemsText, onlistcall, null /* onlistclose */, fieldId, shadowId, showDelay, hideDelay);
this.wrappingItems(value);
this.isListOpened = false;
},