search for: scrollintoview

Displaying 13 results from an estimated 13 matches for "scrollintoview".

2005 Nov 04
19
Drag & Scroll
When using drag and drop, the browser window will not scroll if you move the mouse off the page. This makes it very difficult, if not impossible to create certain types of web applications. I know this has been mentioned before and is on the Wish List, but it''s very frustrating. If you look at this other Javascript library called "Drag''nDrop & DHTML Library"
2007 Nov 11
3
Scrollable selectbox for auto complete
Hi everyone, I have used used scriptalicious for the autocomplete. It works but with one problem. When scrolling down the list, the values not visible are not scrolled into focus. eg I use the keyboard down or up key. Here is my CSS <style type="text/css"> div.auto_complete { height: 100px; width: 350px; background:
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 works now in FF and IE, but still not in Opera. I do not have access to Safari, so I...
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.... _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spino...
2005 Jul 24
0
scriptaculous autocompleter on IE
Hi all, I''ve noticed slightly erratic behaviour with the autocompleter on IE. In controls.js, the render method calls the (IE only) scrollIntoView method, which causes the element to be moved to the bottom or the top of the viewport (by passing in true or false, bizzarely). This is perfectly acceptable behaviour for render in general, but this causes the dropdown list to jump around as you navigate the autocomplete list. I''ve '&...
2006 May 01
0
RE: Leak in the Autocompleter, with scrollable result-div ?
...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 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 works now in FF and IE, but still n...
2019 Aug 23
0
Wine release 4.0.2
...hysicalMemory' WMI class) 46895 SIMATIC WinCC V15.1 Runtime installer (.NET 4.0) fails due to missing 'OperatingSystemSKU' property of 'Win32_OperatingSystem' WMI class 46899 SIMATIC WinCC V15.1 Runtime installer: user can't accept license terms (richedit20 ITextRange::ScrollIntoView lacks handling of 'tomEnd') 46902 SIMATIC WinCC V15.1 Runtime installer: S7Inst64.exe sub-installer crashes on unimplemented function msvcr110.dll._wcsnset_s 46903 SIMATIC WinCC V15.1 Runtime installer: AdHocSigner.exe tool crashes on unimplemented functions mssign32.dll.SignerSignEx...
2019 Apr 26
0
Wine release 4.7
...o build environments '-fcf-protection') 46685 AviUtl: Can't specify 4 digits number as image size in new project dialog. 46794 Skyrim crashes upon clicking Continue on macOS 46899 SIMATIC WinCC V15.1 Runtime installer: user can't accept license terms (richedit20 ITextRange::ScrollIntoView lacks handling of 'tomEnd') 46927 Oracle Java SE Runtime Environment 7/8, OpenJDK JVM for Windows with '-XX:+UseNUMA' setting needs kernel32.dll.VirtualAllocExNuma (Minecraft) 46934 Oracle Java SE Runtime Environment 7/8, OpenJDK JVM for Windows: InternalError: Should not get...
2014 Aug 08
0
Wine release 1.7.24
..._surface. wined3d: Move the "draw_binding" field from struct wined3d_surface to struct wined3d_resource. Indrek Altpere (1): wbemprox: Fix a few OLE variant mappings. Jacek Caban (2): mshtml: Added IHTMLWindow2::navigate implementation. mshtml: Added IHTMLElement:scrollIntoView implementation. Jactry Zeng (1): include: Fix wrong type in tom.idl. Ken Thomases (3): ntdll: In find_file_in_dir(), don't test directory entries' short names if the target name isn't a short name. winemac: Use new API when available to list all display modes availab...
2018 Apr 13
0
Wine release 3.6
...art hangs when drawing polygon fill line type: gdi32.Polygon() 39452 mpr.WNetGetUniversalName() return value (causes Intel MPI to fail) 40156 AutoWikiBrowser database scanner fails with "no access to memory location" 40305 AutoWikiBrowser 5.8 (.NET app) needs riched20 ITextRange::ScrollIntoView 40976 Multiple games need d3d11_device_CreateTexture1D implementation 41279 Sonos Desktop Controller 6.x (.NET 4.x app) crashes with System.NotImplementedException (needs hnetcfg INetFwPolicy2::get_Rules) 41377 Windows 10 DISM fails to find its resources (kernel32 SetThreadUILanguage must...
2016 Apr 01
0
Wine release 1.9.7
...------------------------------------------------------------- Changes since 1.9.6: Aaryaman Vasishta (2): d3drm: Move struct d3drm_texture to header for global access. d3drm: Fix signature macro of IDirect3DRM*::CreateObject. Adam Buchbinder (1): riched20: Implement ITextRange::ScrollIntoView. Alex Henrie (1): ole32: Fix sizeof mismatch in CompositeMonikerImpl_Construct. Alexandre Julliard (26): winebuild: Use strarray objects instead of pointers where possible. winebuild: Use strarray objects for a few more string arrays. kernel32/tests: Use Interlocked functi...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...= true; } @@ -207,27 +207,27 @@ Autocompleter.Base = Class.create({ this.hide(); } }, - + markPrevious: function() { - if(this.index > 0) this.index-- + if(this.index > 0) this.index--; else this.index = this.entryCount-1; this.getEntry(this.index).scrollIntoView(true); }, - + markNext: function() { - if(this.index < this.entryCount-1) this.index++ + if(this.index < this.entryCount-1) this.index++; else this.index = 0; this.getEntry(this.index).scrollIntoView(false); }, - + getEntry: function(index) { return this...
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