Author: ilya_shaikovsky
Date: 2011-02-07 06:58:40 -0500 (Mon, 07 Feb 2011)
New Revision: 21497
Modified:
branches/community/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/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js
===================================================================
---
branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07
01:28:16 UTC (rev 21496)
+++
branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceselectlist.js 2011-02-07
11:58:40 UTC (rev 21497)
@@ -7,16 +7,15 @@
$super(id, null, classes, options, fieldElemIdSuffix);
this.wrappingItems(value);
this.isListOpened = false;
+ if (Richfaces.browser.isIE6 && !this.iframe) {
+ this.createIframe(this.listParent.parentNode, this.listWidth, 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.listWidth, this.list.id,
"");
- }
-
$super(fieldTop, fieldLeft, field.offsetHeight);
},