Tagged Questions

20
votes
9answers
5k 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 …
11
votes
3answers
667 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() …
11
votes
5answers
1k 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 …
9
votes
3answers
881 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 it's events whenever …
8
votes
6answers
368 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 …
8
votes
3answers
860 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] += …
8
votes
9answers
2k views

C# event handling (compared to Java)

Hello everyone: 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 …
7
votes
1answer
420 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 …
7
votes
4answers
363 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 …
7
votes
2answers
1k 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 …
7
votes
4answers
841 views

Garbage collection when using anonymous delegates for event handling

UPDATE I have combined various answers from here into a 'definitive' answer on a new question. Original question In my code I have an event publisher, which exists for the whole lifetime of the …
7
votes
5answers
3k 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, …
6
votes
2answers
265 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 …
5
votes
8answers
188 views

Am I using the right approach to monitor the tasks I want to perform when a handle is created?

Is there a generally-accepted best practice for creating an event handler that unsubscribes itself? E.g., the first thing I came up with is something like: // Foo.cs // ... Bar bar = new Bar(/* …
5
votes
3answers
295 views

Is it possible to replace traditional event handling in C# with the new Reactive framework?

All examples on System.Reactive.dll I've seen so far deal with Events, EventArgs and EventHandlers, I wonder whether someone can show me an example where event notification is handled without this. …

1 2 3 4 5 34 next
15 30 50 per page