Tagged Questions
An event in is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object
217
votes
10answers
92k views
How to close/hide the Android Soft Keyboard?
I'm having an EditText and a Button in my layout. After writing inside the edit field and clicking on the Button, I want to hide the virtual keyboard. I guess there should be a simple, one- or ...
156
votes
19answers
167k views
jQuery Event Keypress: Which key was pressed?
With jQuery, how do I find out which key was pressed when I bind to the keypress event?
$('#searchbox input').bind('keypress', function(e) {});
I want to trigger an submit when ENTER is pressed.
...
107
votes
5answers
27k views
How to find event listeners on a DOM node?
I have a page where some event listeners are attached to input boxes and select boxes.
Is there a way to find out which event listeners are observing a particular DOM node and for what event?
Events ...
66
votes
11answers
21k views
C# Events and Thread Safety
I frequently hear/read the following advice:
Always make a copy of an event before you check it for null and fire it. This will eliminate a potential problem with threading where the event becomes ...
57
votes
5answers
22k views
Custom events in jQuery?
I'm looking for some input on how to implement custom eventhandling in jquery the best way. I know how to hook up events from the dom elements like 'click' etc, but I'm building a tiny javascript ...
47
votes
8answers
5k views
TextBox.TextChanged event firing twice on Windows Phone 7 emulator
I have a very simple test app just to play around with Windows Phone 7. I've just added a TextBox and a TextBlock to the standard UI template. The only custom code is the following:
public partial ...
44
votes
5answers
34k views
Programmatically add custom event in the iPhone Calendar
Is there any way to add iCal event to the iPhone Calendar from the custom App?
43
votes
3answers
1k views
“cannot implement interface member” error when interface and concrete are in different projects
This compiles:
public interface IMyInterface
{
event Action<dynamic> OnSomeEvent;
}
class MyInterface : IMyInterface
{
public event Action<dynamic> OnSomeEvent;
}
But when i ...
43
votes
7answers
13k views
How to order events bound with jquery
Lets say I have a web app which has a page that may contain 4 script blocks - the script I write may be found in one of those blocks, but I do not know which one, that is handled by the controller.
...
42
votes
5answers
18k views
How can I clear event subscriptions in C#?
Take the following C# class:
c1 {
event EventHandler someEvent;
}
If there are a lot of subscriptions to c1's someEvent event and I want to clear them all, what is the best way to achieve this? ...
40
votes
10answers
2k views
Event Signature in .NET — Using a Strong Typed 'Sender'?
I fully realize that what I am proposing does not follow the .NET guidelines, and, therefore, is probably a poor idea for this reason alone. However, I would like to consider this from two possible ...
36
votes
12answers
2k views
In a C# event handler, why must the “sender” parameter be an object?
According to http://msdn.microsoft.com/en-us/library/h0eyck3s%28VS.71%29.aspx the sender parameter in a C# event handler "is always of type object, even if it is possible to use a more specific type."
...
35
votes
7answers
1k views
Is a non-blocking, single-threaded, asynchronous web server (like Node.js) possible in .NET?
I was looking at this question, looking for a way to create a single-threaded, event-based nonblocking asynchronous web server in .NET.
This answer looked promising at first, by claiming that the ...
35
votes
5answers
754 views
Preferred way of modifying elements that have yet to be created (besides events)
There are a lot of questions about binding future manipulations to non-existent elements that all end up answered with live/delegate. I am wondering how to run an arbitrary callback (to add a class or ...
35
votes
11answers
45k views
Javascript callback when IFRAME is finished loading?
I need to execute a callback when an IFRAME has finished loading. I have no control over the content in the IFRAME, so I can't fire the callback from there.
This IFRAME is programmaticly created, and ...
32
votes
6answers
25k views
Catch browser's “zoom” event in JavaScript
Is it possible to detect, using JavaScript, when the user changes the zoom in a page?
I simply want to catch a "zoom" event and respond to it (similar to window.onresize event).
Thanks.
32
votes
8answers
14k views
Difference between events and delegates and its respective applications
I don't see advantages of using events over delegates, other than being syntactical sugar . Perhaps I am misunderstanding, but it seems that events is just a placeholder for delegate.
Would you guys ...
31
votes
6answers
27k views
Delay jquery hover event?
I would like to delay a hover event in jquery. I am reading from a file when user hovers over a link or label. I don't want this event to occur immediately in case the user is just moving the mouse ...
31
votes
10answers
3k views
Is there a downside to adding an anonymous empty delegate on event declaration?
I have seen a few mentions of this idiom (including on SO):
// Deliberately empty subscriber
public event EventHandler AskQuestion = delegate {};
The upside is clear - it avoids the need to check ...
29
votes
10answers
13k views
Cleanest Way to Invoke Cross-Thread Events
I find that the .NET event model is such that I'll often be raising an event on one thread and listening for it on another thread. I was wondering what the cleanest way to marshal an event from a ...
28
votes
8answers
31k views
GWT Custom Event Handler
Can someone give me an example of creating a custom set of an Event and a Handler.
Say you have a Person object that you want your widgets to know if it got updated.
You create a HandlerManager and ...
27
votes
4answers
8k views
26
votes
0answers
771 views
Microsoft Lync 2010 SDK. Not receiving instant messaging events [closed]
I have a test application using the Lync 2010 SDK in full UI suppressed mode. I am trying to build a simple instant-messaging client. I can send messages/text okay (for example to a non UI suppressed ...
26
votes
3answers
5k views
Unit testing that an event is raised in C#
I have some code that raises PropertyChanged events and I would like to be able to unit test that the events are being raised correctly.
The code that is raising the events is like
public class ...
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 ...
25
votes
9answers
35k views
jQuery: Event binding on dynamically created elements?
Thanks for reading.
I have a bit of code where I am looping though all the select boxes on a page and binding a .hover event to them to do a bit of twiddling with their width on mouseon/off.
This ...
25
votes
5answers
2k views
Why use EventArgs.Empty instead of null?
I recall reading, on multiple occasions and in multiple locations, that when firing the typical event:
protected virtual OnSomethingHappened()
{
this.SomethingHappened(this, EventArgs.Empty);
}
...
25
votes
5answers
2k views
What are the differences between delegates and events?
What are the differences between delegates and an events? Don't both hold references to functions that can be executed?
24
votes
12answers
6k views
Avoiding the woes of Invoke/BeginInvoke in cross-thread WinForm event handling?
I'm still plagued by background threading in a WinForm UI. Why? Here are some of the issues:
Obviously the most important issue, I can not modify a Control unless I'm executing on the same thread ...
24
votes
5answers
23k views
event.preventDefault() function not working in IE. Any help?
Following is my javascript(mootools) code:
$('orderNowForm').addEvent('submit', function(event){
event.preventDefault();
allFilled = false;
$$(".required").each(function(inp){
if ...
24
votes
9answers
9k views
Create empty C# event handlers automatically
It is not possible to fire an event in C# that has no handlers attached to it. So before each call it is necessary to check if the event is null.
if ( MyEvent != null ) {
MyEvent( param1, param2 );
...
24
votes
7answers
19k views
JavaScript Callback Scope
I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function.
function foo(id) {
this.dom = document.getElementById(id);
this.bar = 5;
...
23
votes
2answers
8k views
jQuery find events handlers registered with an object
I need to find which event handlers are registered over an object.
For example:
$("#el").click(function() {...});
$("#el").mouseover(function() {...});
$("#el") has click and mouseover registered.
...
22
votes
2answers
494 views
Can I customize automatic event handler generation in Visual Studio?
When you subscribe to an event in code, Visual Studio automatically completes the code after += and generates the appropriate event handler:
button.Click += new EventHandler(button_Click);
// ...
22
votes
6answers
1k views
One shot events using Lambda in C#
I find myself doing this sort of thing quite often:-
EventHandler eh = null; //can't assign lambda directly since it uses eh
eh = (s, args) =>
{
//small snippet of code here
...
22
votes
4answers
4k views
What is LINQ to events a.k.a RX Framework?
What is LINQ to events a.k.a RX Framework aka the Reactive Extensions in .NET 4.0 (but also available as backported versions)?
In other words, what is all the stuff in System.Reactive.dll for?
22
votes
4answers
6k views
What is the difference between the mouseover and mouseenter events?
I have always used the mouseover event, but while reading the jquery documentation I found mouseenter. They seem to function exactly the same. Is there a difference between the two, and if so when ...
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);
...
22
votes
4answers
5k views
C# Generics wont allow Delegate Type Constraints
Is it possible to define a class in C# such that
class GenericCollection<T> : SomeBaseCollection<T> where T : Delegate
I couldn't for the life of me accomplish this last night in .NET ...
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 ...
21
votes
5answers
20k views
Definitive way to trigger keypress events with jQuery
I've read all the answers on to this questions and none of the solutions seem to work.
Also, I am getting the vibe that triggering keypress with special characters does not work at all. Can someone ...
21
votes
5answers
14k views
jQuery hide element when clicked anywhere on the page
I would like to know if this is the correct way of hiding visible elements when clicked anywhere on the page.
$(document).click(function (event) {
$('#myDIV:visible').hide();
});
The ...
21
votes
2answers
8k views
How to correctly unregister an event handler
In a code review, I stumbled over this (simplified) code fragment to unregister an event handler:
Fire -= new MyDelegate(OnFire);
I thought that this does not unregister the event handler because ...
20
votes
9answers
481 views
Packing event arguments in a class, why?
Most .NET stock events are have this signature:
delegate void SomethingSomething(SomethingEventArgs e);
event SomethingSomething OnSomethingSomething;
and
class SomethingEventArgs
{
public ...
20
votes
3answers
1k views
Monitoring Mongo for changes with Node.js
I'm using Node.js for some project work and I would like to monitor my Mongo database (collection) for changes, basically fire an event if something gets added.
Anyone know if this is possible? I'm ...
20
votes
4answers
2k views
How do you detect the clearing of a “search” HTML5 input?
In HTML5, the search input type appears with a little X on the right that will clear the textbox (at least in Chrome, maybe others). Is there a way to detect when this X is clicked in javascript or ...
20
votes
6answers
15k views
jQuery Change event on an <input> element - any way to retain previous value?
I've been searching around this morning and I'm not finding any simple solutions... basically, I want to capture a change in an input element, but also know the previous value.
Here's a change event ...
20
votes
14answers
13k views
When onblur occurs, how can I find out which element focus went *to*?
Suppose I attach an onblur function to an html input box like this:
<input id="myInput" onblur="function() { ... }"></input>
Is there a way to get the ID of the element which caused the ...
19
votes
7answers
611 views
Why does C# require you to write a null check every time you fire an event?
This seems odd to me -- VB.NET handles the null check implicitly via its RaiseEvent keyword. It seems to raise the amount of boilerplate around events considerably and I don't see what benefit it ...