0
votes
1answer
5 views
Mouse Over listener for FlexTable in GWT 1.7?
How do you add an event listener or handler to widgets in GWT 1.7?
I know there are some questions alreayd about this on SO but it seems they are outdated.
For example (ignoring t …
0
votes
2answers
8 views
Event handler in DataTemplate
I have WPF ComboBox inside a data template (a lot of comboboxes in listbox) and I want to handle enter button. It would be easy if it was e.g. a button - I would use Command + Rela …
0
votes
1answer
17 views
CommandBinding Ctrl + Spacebar
I handle commands inside a RoutedCommand class that implements RoutedUICommand. This would help me to block or override a command by checking their CanExecute and Execute if needed …
0
votes
2answers
15 views
datavgrid iew control bounded to a collection question
Hi All, I'm new with DataGrid View control, and I've this problem:
I would like to build a C# application with this control, bounded to a custom collection. If I change the data i …
0
votes
1answer
16 views
WPF - Update panel’s content with a button click
Hi evryone,
I am pretty new to WPF and I cannot figure out how to update a specific part of my page with a single button click.
In my application design I have a menu with button …
0
votes
3answers
26 views
Listen for Events from Browser “Find” Window in JavaScript
Is there a way to listen for typing into the browser's "find" window in JavaScript?
I'd like to be able to reinterpret the search text from JavaScript. What do I need to add an …
0
votes
0answers
16 views
Silverlight 3 Custom Control Event-handling Navigation
I have a Silverlight 3 aplication, The solution (of 3 projects) looks Like this:
ChartsCustomControl
PieChart.cs
SLGrid.Web
SLGrid
NavigationPa …
1
vote
6answers
62 views
Is it possible to create eventlisteners for string, int, bool at all?
Is it possible at all to create eventlisteners (i.e. when the value changes) for a variable of type string, int, bool, etc.?
I haven't seen this in any programming language so fa …
0
votes
2answers
29 views
Bypassing event.stopPropagation
Hi,
I'm writing a Javascript add-on (not in jQuery) which starts working when a certain event has been triggered. It works fine on most of the sites, but I encountered problems in …
1
vote
2answers
56 views
[C#] How can I associate an event handler with a ‘group method’?
I am trying to trigger a process when a RemoveAt(i) method is performed on an ArrayList I have defined.
Can this be done? How?
Thanks,
Asaf.
-1
votes
3answers
70 views
Checking if an event handler exists
Following on from this post - what are the disadvantages when using the -= then += approach suggested when I only ever want one handler event to fire?
_value.PropertyChanged -= _h …
0
votes
1answer
41 views
Is possible to exactly find position of KeyPress event in browsers except IE?
From my recent question, I use KeyPress event for detecting '@' character in rich text editor. By the way, I just found that KeyPress event in other browser like Firefox 3.5 and Go …
0
votes
4answers
48 views
Why don’t UI elements reflect their state in Button Click event handler?
In the following example, how can I get:
the button to be "disabled-grey"
the message to say "working..."
while the work is being done, not after the work is done?
XAML:
< …
1
vote
1answer
29 views
Is possible to capture KeyDown event when current document is in design mode?
As you know, most of rich text editor use iframe to create WYSIWYG editor. In iframe contain document that is in design mode. I want to capture key down event when user press '@' c …
1
vote
2answers
41 views
How should I set up a user control to fire events of its children as if they were its own?
In other words, I have a UserControl that has, for example, a label on it. Well, when the client registers with the MouseMove event of the UserControl, it should get that event whe …
