Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
4answers
19k views

jQuery check if event exists on element

Is there a way to check if an event exists in jQuery? I'm working on a plugin that uses custom namespaced events, and would like to be able to check if the event is binded to an element or not.
3
votes
4answers
5k views

jQuery - window focus, blur events not triggering - works in Firefox and Chrome

In a nutshell; I wrote a simplistic chat application for a buddy and me to use. When the window running the application does not have the focus (minimized or behind other windows) and a message comes ...
2
votes
1answer
2k views

WPF: Trigger animations on elements by name from EventTrigger on a dynamically created control

I have a Grid inside of an ItemsControl's DataTemplate, so there will be many copies of this grid. I want a mouse click on the grid to trigger the storyboard of an element outside of the ...
2
votes
1answer
2k views

Need help handling events of a DataTemplate in the Application.xaml file

I have in my application a data template that has a few buttons. I want those buttons' even handler to be fired in the current page (I am using this template in many pages) rather than in the ...
2
votes
1answer
935 views

In WPF, is it possible to specify multiple routed events for a single event trigger?

I have an event trigger that I want to be fired in response to two different routed events. I don't want to repeat the event response code (in XAML) twice. Can I specify multiple routed events for a ...
0
votes
1answer
30 views

Maintain column relationships in MySQL

I have a table called modules and I want to enforce the following logic, but I am not sure the best way to do it. I was thinking adding an update and insert trigger, but having issues with the ...
0
votes
1answer
205 views

EventTrigger in Xaml

I am trying to add an eventtrigger inside my style but for some reason it is not working. It is throwing me an error of {"Value cannot be null.\r\nParameter name: routedEvent"} My goal is to add a fix ...
0
votes
2answers
55 views

jquery trigger: how can I use it to trigger a link when the page is loaded

How can I use trigger() to trigger the click event on a particular link only? for instance, I have this menu, <li><a href="#" class="load-popup-public 500x400">1</a></li> ...
0
votes
1answer
361 views

xaml: trigger dialog 'Apply' button state

I want to enable 'Apply' dialog button when content of some textboxes in this dialog changes. Here what I came up with <Window.Resources> <ResourceDictionary> ... ...
0
votes
1answer
939 views

How can I have Sql Server 2005 asynchronously call a DOS batch file from a DDL trigger?

I created a batch file to run SqlMetal and generate Linq2Sql data classes, check into source control triggering a build, etc... I'd like to have this script run anytime there is a DDL change in Sql ...