Hi all,
I'am using an autocomplete_tag with the style overflow-x.
For firefox , no problem the scroll work fine.

For IE , when I click on the scroll, the list of elements hide.

The source generated for Firefox contains a div , or for IE the source
contains an iframe :

My css:
#addService_auto_complete{
        height: 50px;
        overflow-y: scroll;
        overflow-x: hidden;
}


prototype/controls.js :
...
show: function() {
    if(Element.getStyle(this.update, 'display')=='none')
this.options.onShow(this.element, this.update);
    if(!this.iefix &&
      (navigator.appVersion.indexOf('MSIE')>0) &&
      (navigator.userAgent.indexOf('Opera')<0) &&
      (Element.getStyle(this.update, 'position')=='absolute')) {
      new Insertion.After(this.update,
       '<iframe id="' + this.update.id + '_iefix" '+
 
'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);"
' +
       'src="javascript:false;" frameborder="0" scrolling="no"></
iframe>');
      this.iefix = $(this.update.id+'_iefix');
    }
    if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
  },
...

I tried to change the scrolling parameter of the iframe, but no
change.
Any have an idea for a working vertiacal scroll an the autocmplete
tag ?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to