Tagged Questions

Event handling is a coding style about handling messages between a source and one or more subscribers. A point listener in the source provide a way which subscribed code can consume messages raised from the source.

learn more… | top users | synonyms (4)

185
votes
11answers
76k views

How to debug Javascript/jQuery event bindings with FireBug (or similar tool)

I need to debug a web application that uses jQuery to do some fairly complex and messy DOM manipulation. At one point, some of the events that were bound to particular elements, are not fired and ...
167
votes
6answers
34k views

JavaScript: event.preventDefault() vs return false

When I want to prevent other event handlers from executing after certain event is fired I can do one of those (jQuery examples, but this will work in JS in general): #1 event.preventDefault() ...
49
votes
3answers
4k views

Do event handlers stop garbage collection from occuring?

If I have the following code: MyClass pClass = new MyClass(); pClass.MyEvent += MyFunction; pClass = null; Will pClass be garbage collected? Or will it hang around still firing its events whenever ...
44
votes
7answers
15k views

jQuery: $().click(fn) vs. $().bind('click',fn);

When using jQuery to hookup an event handler, is there any difference between using the click method $().click(fn) versus using the bind method $().bind('click',fn); Other than bind's optional ...
36
votes
2answers
10k views

Is it necessary to explicitly remove event handlers in C#

I have a class that offers up a few events. That class is declared globally but not instanced upon that global declaration--it's instanced on an as-needed basis in the methods that need it. Each ...
33
votes
5answers
21k views

How do you handle oncut, oncopy, and onpaste in jQuery?

The jQuery documentation says the library has built-in support for the following events: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, ...
25
votes
1answer
7k views

C#: How to remove a lambda event handler [closed]

Possible Duplicates: Unsubscribe anonymous method in C# How do I Unregister ‘anonymous’ event handler I recently discovered that I can use lambdas to create simple event ...
23
votes
6answers
421 views

Why *should* we use EventHandler

I hate EventHandler. I hate that I have to cast the sender if I want to do anything with it. I hate that I have to make a new class inheriting from EventArgs to use EventHandler<T>. I've always ...
23
votes
3answers
3k views

C#: Difference between ' += anEvent' and ' += new EventHandler(anEvent)'

Take the below code: private void anEvent(object sender, EventArgs e) { //some code } What is the difference between the following ? [object].[event] += anEvent; //and [object].[event] += ...
22
votes
7answers
6k views

Event system in Python

What event system for Python do you use? I'm already aware of pydispatcher, but I was wondering what else can be found, or is commonly used? I'm not interested in event managers that are part of ...
22
votes
6answers
11k views

understanding events and event handlers in C#

I understand the purpose of events, especially within the context of creating user interfaces. I think this is the prototype for creating an event. public void EventName(object sender, EventArgs e); ...
21
votes
4answers
18k views

jQuery equivalent of JavaScript's addEventListener method

I'm trying to find the jQuery equivalent of this JavaScript method call: document.addEventListener('click', select_element, true); I've gotten as far as: $(document).click(select_element); but ...
19
votes
5answers
13k views

jQuery Multiple Event Handlers - How to Cancel?

I have two functions bound to a click event at two different times (using jQuery). The order in which they are fired is significant. They are firing in the correct order. The problem is, when the ...
18
votes
6answers
7k views

Handle URL anchor change event in js

How can I write the JavaScript callback code that will be executed on any changes in the URL anchor? For example from http://example.com#a to http://example.com#b
18
votes
3answers
20k views

JQuery Autocomplete verify selected value

We are using the autocomplete jquery plugin written by Jörn Zaefferer, and are trying to verify a valid option is entered. The plugin has result() event which fires when a selection is made. This is ...
16
votes
5answers
4k views

Raising C# events with an extension method - is it bad?

We're all familiar with the horror that is C# event declaration. To ensure thread-safety, the standard is to write something like this: public event EventHandler SomethingHappened; protected virtual ...
15
votes
2answers
153 views

How does the removing an event handler with -= work when a “new” event is specified

In the MSDN Events Tutorial hooking up to events is demonstrated with the example: // Add "ListChanged" to the Changed event on "List": List.Changed += new ChangedEventHandler(ListChanged); ... // ...
15
votes
8answers
985 views

Why are only final variables accessible in anonymous class?

a can only be final here. Why? How can I reassign a in onClick() method without keeping it as private member? private void f(Button b, final int a){ b.addClickHandler(new ClickHandler() { ...
15
votes
3answers
663 views

Error in IE when manually calling event handler, given certain conditions

Preface Please note, I'm not looking for a code solution, but rather insight into why this may occur. The error occurs in IE (tested 7 & 8), but not Firefox, Chrome, Safari. Description When ...
14
votes
7answers
4k views

How to dismiss a popup in Silverlight when clicking outside of the control?

In my Silverlight UI, I have a button that when clicked pops up a control with some filtering parameters. I would like this control to hide itself when you click outside of it. In other words, it ...
14
votes
2answers
1k views

Is it bad to not unregister event handlers?

If I have an application with only a few event handlers registered (and the objects using the events are not disposed until the application is closed), do I really need to worry about unregistering ...
14
votes
7answers
6k views

Qt - top level widget with keyboard and mouse event transparency?

I want an app's main window to ignore mouse and keyboard events, passing them to applications underneath it in the window manager Z-order. I see how to make child widgets ignore keyboard or mouse ...
14
votes
1answer
3k views

What is the event precedence in JavaScript?

What order of precedence are events handled in JavaScript? Here are the events in alphabetical order... onabort - Loading of an image is interrupted onblur - An element loses focus onchange - The ...
13
votes
7answers
621 views

Do you need to remove an event handler in the destructor?

I use some UserControls which get created and destroyed within my application during runtime (by creating and closing subwindows with these controls inside). It's a WPF UserControl and inherits from ...
13
votes
7answers
11k views

C# pattern to prevent an event handler hooked twice

Duplicate of: How to ensure an event is only subscribed to once and Has an event handler already been added? I have a singleton that provides some service and my classes hook into some events on it, ...
13
votes
5answers
1k views

What's wrong with calling Invoke, regardless of InvokeRequired?

I've seen the common setup for cross threading access to a GUI control, such as discussed here: ...
12
votes
1answer
254 views

Handling events in Haskell

I would like to implement the following scenario in Haskell. I have an enumerable set of 'events' defined like this: data MyEvent = Event1 | Event2 | Event3 I want to ...
12
votes
2answers
526 views

Why DragHandler exportAsDrag disables my MouseMotionListener?

I want to realize a simple JComponent-Drag-and-Drop with a preview from O.Reilly-Swing.Hacks Hack 69. Translucent Drag-and-Drop. My Problem is if the TransferHandler start the Drag the ...
12
votes
4answers
791 views

Why and How to avoid Event Handler memory leaks?

I just came to realize, by reading some questions and answers on StackOverflow, that adding event handlers using += in C# (or i guess, other .net languages) can cause common memory leaks... I have ...
12
votes
6answers
5k views

How can I catch a ctrl-c event? (C++)

How do I catch a ctrl-c event in C++?
12
votes
5answers
2k views

Can using lambdas as event handlers cause a memory leak?

Say we have the following method: private MyObject foo = new MyObject(); // and later in the class public void PotentialMemoryLeaker(){ int firedCount = 0; foo.AnEvent += (o,e) => { ...
11
votes
1answer
2k views

extjs 4 event handling tutorial

I've recently started learning ExtJS, I'm looking for a good ExtJS 4 event handling tutorial. I have no experience of any previous versions of ExtJS. From reading various manuals, guides and ...
11
votes
4answers
167 views

What is the best way to execute a function when user clicks on a link?

From my experience I know three different ways to execute a Javascript function when a user clicks on a link Use the onclick attribute on the link <a href="#" onclick="myfunction();return ...
11
votes
6answers
1k views

Which event-driven applications are implemented in Haskell?

I've been looking at Haskell lately and it seems like a very nice way to watch programming problems from an alternative point of view - alternative to my usual imperative (I have a strong C++ ...
11
votes
3answers
13k views

Mouse position using jQuery outside of events

I need to get a hold of the absolute mouse position / coordinates (X and Y) using (preferably) jQuery like in this tutorial but outside of any JavaScript event. Thank you.
10
votes
3answers
634 views

Honeywell Dolphin 9500 (Pocket PC 2003) C# Event Handling Conflicts?

Environment Windows XP x32 Visual Studio 2005 Standard Edition Honeywell Dolphin 9500 running Windows Mobile 2003 (Pocket PC 2003) With built in Barcode scanner and B&W camera Using their SDK ...
10
votes
7answers
519 views

Raise event thread safely - best practice

In order to raise an event we use a method OnEventName like this: protected virtual void OnSomethingHappened(EventArgs e) { EventHandler handler = SomethingHappened; if (handler != null) ...
10
votes
4answers
360 views

Test events with nunit

im just starting with TDD and could solve most of the problems i've faced on my own. But now im lost: How can I check if events are fired? I was looking for something like Assert.Raise or Assert.Fire ...
10
votes
2answers
1k views

Cross-thread event handling in C#

I am working with a framework that runs its own event dispatcher in a separate thread. The framework may generate some events. class SomeDataSource { public event OnFrameworkEvent; void ...
10
votes
6answers
7k views

In C#, why can't i test if a event handler is null anywhere outside of the class that it's defined?

I'm sure that i'm just not understanding something fundamental about events and/or delegates in C#, but why can't i do the Boolean tests in this code sample: public class UseSomeEventBase { ...
10
votes
4answers
3k views
10
votes
3answers
3k views

How to unsubscribe from an event which uses a lambda expression?

I have the following code to let the GUI respond to a change in the collection. myObservableCollection.CollectionChanged += ((sender, e) => UpdateMyUI()); First of all is this a good way to do ...
10
votes
9answers
4k views

C# event handling (compared to Java)

I am currently having a hardtime understanding and implementing events in C# using delagates. I am used to the Java way of doing things: Define an interface for a listener type which would contain ...
9
votes
1answer
139 views

Live click event reporting different source in Firefox vs Chrome

With this HTML <div> <button> <img src="https://img.skitch.com/20110912-1m2qj31m7sxmh46uheef63gutu.gif"> </button> </div> and this jQuery ...
9
votes
3answers
244 views

Emulate W3C event capturing model in IE

Is it possible to emulate event capturing in Internet Explorer? An example: <a>one</a> <a>two</a> <a>three3</a> <script> var links = document.getElementsByTagName("A"); for ...
9
votes
4answers
433 views

What is the best way to handle multiple key events in Javascript?

Pressing space bar in game will make a character shoot, pressing space bar when a confirmation box is shown will make this box disappear and pressing space bar in a highscore form will add a space in ...
9
votes
5answers
6k views

jQuery live('click') firing for right-click

I've noticed a strange behaviour of the live() function in jQuery: <a href="#" id="normal">normal</a> <a href="#" id="live">live</a> $('#normal').click(clickHandler); ...
9
votes
2answers
2k views

Forwarding events in C#

I'm using a class that forwards events in C#. I was wondering if there's a way of doing it that requires less code overhead. Here's an example of what I have so far. class A { public event ...
9
votes
3answers
1k views

In what cases are detaching from events necessary?

I'm not sure if I'm entirely clear on the implications of attaching to events in objects. This is my current understanding, correct or elaborate: 1. Attaching to local class events do not need to be ...
9
votes
2answers
693 views

What is the difference between the KeyCode and KeyData properties on the .NET WinForms key event argument objects?

The two key event argument classes KeyEventArgs and PreviewKeyDownEventArgs each have two properties, KeyCode and KeyData, which are both of the enumeration type Keys. What is the difference between ...

1 2 3 4 5 53