search for: valuel

Displaying 6 results from an estimated 6 matches for "valuel".

Did you mean: value
2006 Jan 28
4
Unspecified error in prototype.js
...e also using AJAX.Updater) and when I start dragging I get an ''Unspecified Error'' on line 1589 of prototype.js, and error persist, till I hit escape or refresh the page again. 1584. cumulativeOffset: function(element) { 1585. var valueT = 0, valueL = 0; 1586. do { 1587. valueT += element.offsetTop || 0; 1588. valueL += element.offsetLeft || 0; 1589. element = element.offsetParent; //-----------> This line throws the error. 1590. }...
2005 Sep 29
14
Draggables and overflow div''s revisited
I have two scrollable div''s (overflow:auto), one with a list of elements (the source) and the other is the drop target (dest). I''ve enabled ghosting so that the drag element gets out of the scrollable box (good). Interesting, at least on Firefox, the ghosted drag ends up going ''under'' the destination div when I drag it. No amount of z-order fidding seems to
2008 Jul 04
0
Scriptacoulous:BlindDown wont stop scaling at ScaleTo Target Value
...o immediate results and were encouraging enough to do some serious stuff. Now the troubles set in: When calling BlindDown as BlindUp etc. and passing a ScaleTo argument, the function still runs down till ScaleTo = 0. Syntax etc. is all right; I even can notice a slight delay at the defined ScaleTo valuel, it simply wont stay there. I''d be happy if you could give me directions of how to stop the function at the requested ScaleTo value. Many thanks, Hannes --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "R...
2006 Apr 08
0
autocomplete update element positioning in Opera
...ssue with .scrollTop on a input control. I expect it to report 0 but it report its current coordinate. So the update window goes to a wrong location. This is a block of code in Position.page page: function(forElement) { ... /* do { valueT -= element.scrollTop || 0; valueL -= element.scrollLeft || 0; } while (element = element.parentNode); */ If I comment out the valueT -= element.scrollTop stuff, the update position perfectly in Opera. I wonder what that block of code is for? wy _______________________________________________ Rails-spinoffs mailing list...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...the positioning context, when an // element is position relative but top and left have not been defined - if (window.opera) { + if (Prototype.Browser.Opera) { element.style.top = 0; element.style.left = 0; } @@ -2002,9 +2024,9 @@ Element.Methods = { valueL += element.offsetLeft || 0; element = element.offsetParent; if (element) { - if (element.tagName == 'BODY') break; + if (element.tagName.toUpperCase() == 'BODY') break; var p = Element.getStyle(element, 'position'); - if (p == '...
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