0
votes
2answers
29 views
keyUp event heard?: Overridden NSView method
UPDATED: I'm now overriding the NSView keyUp method from a NSView subclass set to first responder like below, but am still not seeing evidence that it is being called.
@implementation svsView
- …
2
votes
1answer
23 views
Mouse click location on an image
I have a GWT container with some stuff in it and an image which is added a clickhandler.
What I try to do is to get the exact mouse event's X and Y coordinates relative to the image. I saw the post …
0
votes
2answers
19 views
How to raise a global event in dojo?
Hello,
I am trying to raise an event to all of the widgets that catch it.
I have an authentication widget and other widgets that depeand on the fact that the user is logged in.
I would like to raise …
0
votes
2answers
18 views
Handle tilt left / right in WPF
How can I handle tilt left or tilt right mouse event in WPF?
0
votes
2answers
17 views
Handling scroll event on listview in c#
I have a listview that generates thumbnail using a backgroundworker. When the listview is being scrolled i want to pause the backgroundworker and get the current value of the scrolled area, when the …
0
votes
1answer
6 views
adding Scrollbar listener to JOGL project
As the title suggests I am trying to add an event listener to a JOGL project to no avail. Any
help would be much appreciated
0
votes
2answers
35 views
How to catch events in multi-threaded application that can be watched by main thread?
I have a console application (VB.NET). When it is started, it spawns worker threads to find work in the database and do the task, then look for the next task (A workflow basically).
The problem that …
1
vote
1answer
26 views
Trigger event of auto popup list selection via javascript
I have previously entered value 1111, 1222, and 1333 into a HTML text input. Now if I enter 1 to the text input, it should popup a list with value 1111, 1222, and 1333 as available options. How do you …
0
votes
0answers
6 views
How to add event handler to AJAX Control Toolkit Extenders
I have been trying to add a toggle button using the ToggleButtonExtender and the MutuallyExclusiveCheckboxExtender. However, I cannot add an additional client side event handler for the click event of …
0
votes
2answers
23 views
Recursive SharePoint Event Handers
I've got an Event Receiver for when a list item is Updated (ItemUpdated and not ItemUpdating). Inside the receiver I then update the list item again. This naturally sets off some recursive event calls …
0
votes
1answer
29 views
How to correctly pass some custom parameters to event handlers in WPF?
What could be a correct way to assign parameters to objects in WPF window (objects as simple as rectangles) and pass them to event handlers on mouse clicks?
Thank you.
0
votes
3answers
35 views
What is the way to minimize number of similar event handlers?
A WPF window should have hundreds of objects (rows of rectangles) and mouse clicking on each of them should fire similar actions. These actions differ only by several parameters (say "No. of Row" and …
1
vote
2answers
45 views
Adding and removing events in ASP.NET
I've recently discovered this technique in my ASP.NET code base that I maintain. What does it do and how would I use it? And Maybe more importantly, would this work at all given ASP.NET is using …
0
votes
1answer
52 views
java static vs non-static using this and event handlers
Hello,
I'm trying to learn about java's event handlers and keep getting errors with type type (static/non-static) methods I create. Some code I'm trying to write looks like:
import javax.swing.*;
…
1
vote
2answers
28 views
Can I flush the event stack within Firefox using Javascript?
I have a hierarchy of tags within my HTML which all contain onclick event handlers. The onclick is pushed onto the event stack from the leaf back through the root of the hierarchy. I only want to …
