search for: haslayout

Displaying 7 results from an estimated 7 matches for "haslayout".

2005 Dec 21
3
IE/CSS issue using Sortables....but only on the first drag
OK, I''m in need of help :) I''ve got a bug in IE (whoa!) that I can''t figure out. I think its CSS-related, but I sure can''t figure out what the problem is. Go here: http://jerod.ontasksoftware.com/demo/index.php and drag one of the items in the center listbox. In FF, it works beautifully. In IE6, it shoots off to the left...but ONLY once. After
2006 Mar 21
9
IE flakiness?
I set up a simple BlindUp and BlindDown div that works seamlessy in Firefox but doesn''t work as smoothly in IE. When blinding down, the whole div flashes and then Blinds down. The same thing when blinding up. Is this something that is fixable? _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2008 May 07
3
IE barks at getInlineOpacity, makePositioned and a catch
...(effects.js): var oldOpacity = element.getInlineOpacity(); Object doesn''t suppot this property or method (line 597) (prototype.js): } catch (e) { Object doesn''t suppot this property or method (line 379) (effects.js): this.element.makePositioned(); I first suggested this to be a hasLayout related issue, but the div in question (div#crossanimation) is absolutely positioned and both prototype and scriptaculous are up-to-date. Any enlightenment would be very much apprechiated! PS: What I''ve tried so far, neither helped: - Moving the scripts into the head. - Removing all sty...
2006 May 02
0
IE DragDrop Oppacity Error
...ass.create(); Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), { initialize: function(element) { this.element = $(element); // make this work on IE on elements without ''layout'' if(/MSIE/.test(navigator.userAgent) && (!this.element.hasLayout)) this.element.setStyle({zoom: 1}); var options = Object.extend({ //Break here on error from: this.element.getOpacity() || 0.0, to: 1.0 }, arguments[1] || {}); this.start(options); //Till here }, update: function(position) { this.el...
2006 Jan 19
2
how can I get offsetHeight in IE?
Ok, This is driving me nuts. I am trying to determine the height of an element in IE, but offsetHeight returns undefined. I looped through all of the attributes that contain the word ''height'', both in the element and in the element.style, but they are all undefined. Is there a better way to determine the rendered height of an element? Is there something I need to do to the
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...{ element.offsetParent } + catch(e) { return Element._returnOffset(0,0) } var position = element.getStyle('position'); - if (position != 'static') return proceed(element); + if (position !== 'static') return proceed(element); + // Trigger hasLayout on the offset parent so that IE6 reports + // accurate offsetTop and offsetLeft values for position: fixed. + var offsetParent = element.getOffsetParent(); + if (offsetParent && offsetParent.getStyle('position') === 'fixed') + offsetParent.setSt...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server