search for: skaue

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

Did you mean: skate
2006 May 01
0
RE: Leak in the Autocompleter, with scrollable result-div ?
...hich leads to a performance problem / memory leak. (Commenting it out seems to fix this problem.) I was wondering why it was there? Thanks again, Ed C. On 4/24/06, Ed C. <defeated2k4@gmail.com> wrote: > > +1 > > (Tested successfully in IE 6) > > > On 4/20/06, Tommy Skaue <tommy.skaue@gmail.com> wrote: > > > > Hi everyone > > > > If you've seen this ticket, http://dev.rubyonrails.org/ticket/4782 , > > you've noticed I have tried to make scrollable autocompleter work. The > > scrollIntoView works great, however the if...
2006 Apr 20
1
The Autocompleter, with scrollable result-div
Hi everyone If you''ve seen this ticket, http://dev.rubyonrails.org/ticket/4782, you''ve noticed I have tried to make scrollable autocompleter work. The scrollIntoView works great, however the iframefix for IE didnt work in the previous change. This is fixed now. Also the "blur-on-scrollbar-click" should not work in both IE and Safari (can someone confirm this?) It all
2007 Feb 21
8
Element.addMethods() is not a function after upgrade to 1.7.0
After upgrading to prototype 1.5.0 and scriptaculous 1.7.0 my autocompleter.local died... firebug reports that effects.js is to blame calling Element.addMethods(); I can not find out why cause as far as I can see it does exist in prototype.js. Any pointers anyone :( --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2006 Jun 20
10
Next script.aculo.us release, help needed
...speed is 0/0, fixes #5035 [thx tomg] * Fix a problem with Sortable Tree serialization, fixes #4939, #4688, #4767 [thx Sammi Williams] * Fix an endless loop with sliders, fixes #3226, #4051, #4765 [thx jeff] * Make autocompleter work with update DIVs that have scrollbars, fixes #4782 [thx Tommy Skaue] * Corrected options parsing on switchoff effect, fixes #4710 [thx haldini] So, please, please, please with sugar on the top help me, the more people do the faster the next release will be out there! :) Thanks, Thomas
2006 May 01
0
RE: Leak in the Autocompleter, with scrollable result-div ?
Hi Ed The reason it adds a new onblur is because when you click the scrollbar the event is gone. I dont know why and how to prevent it, but without adding it back the onblur does not get triggered and the layer does not hide when you click somewhere else on the page. If anyone finds a better solution, please provide a patch. I still have not been able to make the blur work on Safari, so Thomas
2006 May 05
0
Re: How to insert styles with Insertion (David Kaufman)
I dont think its is allowed according to the W3C standards to have <style> sections inside the <body>. Keep that in mind when insering css-style-sections. ;-) -Tommy > > WJRANKIN-J6ISH/MDR2c@public.gmane.org wrote: > > Hi, > > > > I''m having difficulty using Prototype''s Insertion method to insert > > styles into a document node. Code
2006 May 23
0
RE: Autocompleter - up arrow moves cursor to startofinput box
The key up will make the page scroll to the top of the inputfield... I''ve seen this myself and the reason is the changes applied in this patch: http://dev.rubyonrails.org/ticket/4782 I am pretty sure it is because of this statement: this.getEntry(this.index).scrollIntoView(true); the "true"-makes the page scroll.... any working workinaround would be great....