Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
7k views

TextBox.TextChanged & ICommandSource

I am following the M-V-VM pattern for my WPF UI. I would like to hook up a command to the TextChanged event of a TextBox to a command that is in my ViewModel class. The only way I can conceive of ...
4
votes
3answers
147 views

In jQuery if you remove an element will any events on it be removed?

For example if I have a link with the following event bound to it: $("a.d").bind("click", this, onDelete); And later do: $("a.d").remove(); Is that fine? Or does it cause a memory leak and I ...
2
votes
4answers
517 views

Disable click event with jQuery

My question is related about disabling links/click events with jQuery, and it's probably easier than it seems to me. I commented the important code to make it easier. I have the following code in a ...
2
votes
3answers
221 views

How do I bind an event to the left mouse button being held down?

I need a command to be executed as long as the left mouse button is being held down.
2
votes
7answers
1k views

Uses for OnItemDataBound

What would you realistically use OnItemDataBound for on a Repeater ?
1
vote
1answer
174 views

WPF Event Passing Between two child usercontrol of a main usercontrol

I am using Visual Studio 2010. I have two custom usercontrol class in wpf. And there is a Main Usercontrol class named MainWindow.xaml. I have added two Different class named ...
0
votes
0answers
141 views

Jquery trigger event not working after updating to JQuery 1.6.2 from 1.4.2

I've been tasked to update jquery from 1.4.2 to 1.6.2. global event triggers have stopped working. $.event.trigger('custom'). var myObject = new MyObject(); $(myObject).bind("custom", ...
0
votes
1answer
197 views

wxPython ListCtrl OnClick Event

So, I have a wxPython ListCtrl which contains rows of data. How can I make an event that calls a function, with the row contents, when one of the rows if clicked on?
0
votes
3answers
997 views

Override all JavaScript events bound to an element with a single new event

Assuming that there are a large number of elements throughout the site that have an unknown number and type of events bound to them. If I need to override all of these events with one single bound ...
0
votes
2answers
543 views

MVVM WPF: Reflecting a controls property to the viewmodel, when an events get triggered

Okay i'm trying to understand WPF and the popular MVVM Pattern. Now i have this issue. I'm using a ribbon control with several tabs. In my ViewModel i have a property "ActiveTab (string)" Which ...
0
votes
3answers
318 views

jQuery .live(“click”, fn) works only on second clik

I have a DOM element that is generated with js, and therefore when i want to bind a click event listener i need to use $(generatedEl).live("click", fn...) (is there a different way?) here ...
-1
votes
2answers
65 views

View model event bind to button click

My Viewmodel has an event public class TestViewModel { public event RoutedEventHandler Run; } I wanna trigger this event when user clicked on a button in view How to bind this with a button ...