Author: ilya_shaikovsky
Date: 2011-02-07 06:59:55 -0500 (Mon, 07 Feb 2011)
New Revision: 21498
Modified:
branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
Log:
http://jira.jboss.org/browse/RF-10435
Modified:
branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
===================================================================
---
branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07
11:58:40 UTC (rev 21497)
+++
branches/enterprise/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07
11:59:55 UTC (rev 21498)
@@ -5,16 +5,15 @@
$super(listId, parentListId, selectFirstOnUpdate, null, this.classes, width, height,
itemsText, onlistcall, null /* onlistclose */, fieldId, shadowId, showDelay, hideDelay);
this.wrappingItems(value);
this.isListOpened = false;
+ if (Richfaces.browser.isIE6 && !this.iframe) {
+ this.createIframe(this.listParent.parentNode, this.width, this.list.id,
"");
+ }
},
setPosition : function($super, fieldTop, fieldLeft, fieldHeight) {
var field = this.fieldElem;
field.show();
- if (Richfaces.browser.isIE6 && !this.iframe) {
- this.createIframe(this.listParent.parentNode, this.width, this.list.id,
"");
- }
-
$super(fieldTop, fieldLeft, field.offsetHeight);
},