search for: mouseup

Displaying 15 results from an estimated 15 matches for "mouseup".

2005 Aug 31
0
Event listener problems
...events I want to monitor and have had some problems which might be of interest. First I have been having a crash on Safari 2.0 and 2.0.1. The logical place to call Event.stopObserving to de-register the listener is actually within the listener once it has finished its task. eg register a mouseup listener from the mousedown event listener and then remove the mouseup listener from within the mouseup listener when the mouseup has executed. I found that if Event.stopObserving was called as anything other than the last line of the method, Safari would crash occasionally. Not always bu...
2006 May 21
3
Catching events outside document (on window chrome)
Hello, How can I catch the onmouseup event outside the ducument - means when the pointer is above window chrome (e.g. toolbar)? Event.observe(document, ''mouseup'', someListener) works only inside the document for me. Thanks in advance for your help! Thomas -- Posted with http://DevLists.com. Sign up and save...
2008 Jul 01
2
Sortable, stop event on drop
I''ve got a "Sortable" list that is sorting just fine. But in the list items, there is a link. If you mousedown on the link, drag it to a new location and mouseup, the list gets reordered appropriately, but then the link is followed (you did - after all - click it). Is there a way to either stop the mouseup/click event before activating the link after you''ve dragged the item, or to not drag at all with the link, that is, not have the link as part o...
2007 May 24
0
IE6-7 Observe Document Oddity - mouseup
I''ve come to the recent need to know when the scrollbar has been grasped and let go. However, I''ve worked my way into a corner using Event.observe on the document (window wouldn''t work for me at all in Internet Explorer 6 & 7). Oddly enough, it works for mouse down... just not up. I''ve attached a simple functional test file. Expected Results:
2005 Oct 14
2
events after sort
...t with: Sortable.create(''id'', { onChange: myFunc }); but what i really want is an event that occurs after the li''s have been reordered and settled into the new list order. how would i do that? i know i can do for exampe: Event.observe(''id'', ''mouseup'' , func , false); i''m sure there''s a very simple solution, it''s just escaping me, thanks for any tips. -brent -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/200510...
2006 Jun 14
5
Sortable Tree - Stoping Event dispatch ?
Hi, I''m trying to play with sortable tree and have two issues: I have an AJAX Tree looking like: <ul class=''TreeCat'' id=''work''> <li class=''open''> <img src=''s.gif'' class=''node'' onclick="Ajax.Tree.toggle(event,this);"/> <a
2006 Feb 27
11
Disabling anchor clicking in a draggable
Hey guys I have an interesting problem - I have some draggable elements (sortable actually), with links (<A>) inside them. I want the user to be able to click on the link, however if the user drags the element I don''t want the link to get fired. Can anyone think of a way to do this? It only needs to work in Firefox. Cheers -Rob
2007 May 05
0
integration with movtable
...ot;http://www.w3.org/TR/html4/loose.dtd"> <title>Movtable - List</title> <%= stylesheet_link_tag ''movtable'' %> <%= sort_generateJS %> </head> <body onload="sortableInit()" onmousemove="mouseMove(event)" onmouseup="mouseUp(event)"> <%= render_partial ''../../lib/movtable/table'' %> <%= render_partial ''../../lib/movtable/navigation'' %> <%= render_partial ''../../lib/movtable/filter'' %> </body> </html>...
2005 Oct 25
0
Speed improvements for draggable elements?
...g simple I''m missing. When I click on a draggable element (on the left- hand side of the page in my app), I can immediately begin dragging it, but it seems that if I get closer to the middle of the page, things get slow and chunky--to the point that the browser will even miss the mouseUp event if I let go (At this point, I can drag my draggable div around with the mouse cursor even though the mouse button is no longer pressed. I have to click the mouse again to get it to "let go"). Are there any tips that may improve this situation? Thanks, Duane Johnson (canadad...
2006 Mar 02
3
Hey How did they do that?
I''ve seen web apps where cells within a table column can be highlighted by dragging over them. NumSum does this. Any ideas on how this is achieved? When I try to select cells in a column by dragging over them the text within rows gets selected as well. Take Care -- Aneesha _______________________________________________ Rails-spinoffs mailing list
2001 Aug 20
1
Event trail info help request
...cally, daily from CVS. I'm using Xfree 4.0.2 with a microtouch touchscreen, and I'm chasing a mouse event bug. I write my software in Borland Delphi 4. For testing, I have written a program that simply intercepts the application message queue, and filters WM_MOUSEMOVE, WM_LMOUSEDOWN and WM_LMOUSEUP events, and prints them to a memo component complete with hex representation of the hwnd from the message. I'm running the program with wine -managed --debugmsg +event Project1.exe This applies to all the windows programs I have run so far. I use Calc.exe from win95 as a good example. It wo...
2008 Oct 24
0
Wine release 1.1.7
...mshtml: Added IHTMLFrameBase2::get_contentWidnow implementation. mshtml: Added open and close implementation. mshtml: Added IHTMLInputElement::select implementation. mshtml: Added element blur, focus, paste and drag event implementation. mshtml: Added element keydown, mouseup and mousedown event implementation. mshtml: Added document keydown, keyup, dragstart and selectstart event implementation. mshtml: Added element mouseout and selectstart event implementation. mshtml: Test for NULL nscontainer in set_event_handler_disp. mshtml: Added IHTMLDoc...
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_resource.c
...ditions & SWFDEC_EVENT_UNLOAD) - return "Unload"; - if (conditions & SWFDEC_EVENT_MOUSE_MOVE) - return "MouseMove"; - if (conditions & SWFDEC_EVENT_MOUSE_DOWN) - return "MouseDown"; - if (conditions & SWFDEC_EVENT_MOUSE_UP) - return "MouseUp"; - if (conditions & SWFDEC_EVENT_KEY_UP) - return "KeyUp"; - if (conditions & SWFDEC_EVENT_KEY_DOWN) - return "KeyDown"; - if (conditions & SWFDEC_EVENT_DATA) - return "Data"; - if (conditions & SWFDEC_EVENT_INITIALIZE) - return &q...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...les.activate(drop); } }, @@ -121,25 +121,25 @@ var Droppables = { if(this.last_active) this.deactivate(this.last_active); } -} +}; var Draggables = { drags: [], observers: [], - + register: function(draggable) { if(this.drags.length == 0) { this.eventMouseUp = this.endDrag.bindAsEventListener(this); this.eventMouseMove = this.updateDrag.bindAsEventListener(this); this.eventKeypress = this.keyPress.bindAsEventListener(this); - + Event.observe(document, "mouseup", this.eventMouseUp); Event.observe(document,...
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