Tagged Questions
The eventtrigger tag has no wiki summary.
13
votes
2answers
16k views
Setting a property with an EventTrigger
I want to be able to set a property with an EventTrigger, there's a number of problems with this.
1) EventTriggers only support Actions, so I must use a storyBoard to set my properties.
2) Once I ...
13
votes
3answers
28k views
How to open a WPF Popup when another control is clicked, using XAML markup only?
I've got two controls, a TextBlock and a PopUp. When the user clicks (MouseDown) on the textblock, I want to display the popup. I would think that I could do this with an EventTrigger on the Popup, ...
12
votes
2answers
12k views
Fading out a wpf window on close
I want to fade a window in/out in my application. Fading in occurs on Window.Loaded and I wanted to fade out on close (Window.Closed or Window.Closing). Fading in works perfectly but a RoutedEvent is ...
9
votes
4answers
7k views
WPF - Set Focus when a button is clicked - No Code Behind
Is there a way to set Focus from one control to another using WPF Triggers?
Like the following example:
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
6
votes
4answers
3k views
Invoke Command When “ENTER” Key Is Pressed In XAML
I want to invoke a command when ENTER is pressed in a TextBox. Consider the following XAML:
<UserControl
...
...
6
votes
4answers
4k views
How can I Have a WPF EventTrigger on a View trigger when the underlying Viewmodel dictates it should?
Here's the scenario:
I have the following user control, the idea is that it's view model should be able to signal to the view that it needs to "Activate the Glow", thereby playing the Storyboard.
...
5
votes
2answers
60 views
Why jQuery's triggerHandler() doesn't prevent inline events?
I've made this test code for the question: http://jsfiddle.net/5phqm/1/
As far as I understand, if jQuery's triggerHandler() prevents default browser behavior, then native JavaScript events will not ...
4
votes
1answer
614 views
How to bind Checked event for radio button in WPF?
I am using the following markup in WPF:
<StackPanel.Triggers>
<EventTrigger RoutedEvent="RadioButton.Checked" SourceName="xmlRadioButton">
...
4
votes
2answers
3k views
WPF - How can I selectively set the “Visibility” of a TabItem via DataBinding/Triggers
I have a tab page that should be hidden if a property (BlahType) is set to 1 and shown if set to 0. This is what I WANT to do:
<TabItem Header="Blah">
<TabItem.Triggers>
...
3
votes
2answers
807 views
Condition in an EventTrigger
Can I check condition inside an event trigger? how can I do something like that using only XAML?
<EventTrigger RoutedEvent="MouseDown">
<Trigger Property="IsPressed" Value="true">
...
3
votes
3answers
1k views
jQuery activate a mouseover function only if the mouse holds on the element
I would like to activate a .mouseover function only if the mouse lays down on the "trigger" element for a predetermined duration (e.g. 500 milliseconds).
E.g.
$('.featured').mouseover(function () {
...
3
votes
1answer
2k views
jQuery: trigger() won't work on a link
I am trying to trigger() a link but it does not seem to work.
An <img> element has a rel attribute that contains the id of the link.
Clicking on the element should trigger the corresponding ...
3
votes
1answer
4k views
WPF — why isn't this EventTrigger working?
I'm trying to get one style going that performs all of my triggers. This is what I have, but the SoundPlayerAction is not firing:
<Style x:Key="{x:Type ListBoxItem}" TargetType="ListBoxItem">
...
3
votes
2answers
8k views
WPF EventTriggers - Cannot convert string 'MouseEnter' in attribute 'RoutedEvent' to object of type 'System.Windows.RoutedEvent'
I can't get any event triggers to work. A simplified example of what I'm doing is below -
<Window x:Name="win" x:Class="EventTriggers.Window1"
...
2
votes
1answer
89 views
MVC3 input button triggered by Enter button
I have an ASP.NET MVC 3 C#.NET web application and I want the Enter button to trigger a particular Save button on my form. How would I do that?
2
votes
2answers
49 views
simulating an change event jquery
I have five lists (select) that are populated with php / mysql and jquery. I use this script: http://bit.ly/3YTAXe
When I post my form and the new page appears, I redisplay my five list and I want my ...
2
votes
5answers
49 views
Jquery when i click on img it behaves like link (triggering link)
i have a problem, I got some li, inside them i have a link and an image. What i want is when someone clicks on the image it triggers the link. I cant put the image in a link, don't ask why :)... So ...
2
votes
1answer
104 views
Use EventTrigger on a specific key
I would like to invoke a command using EventTrigger when a particular key is touched (for example, the spacebar key)
Currently I have:
<i:Interaction.Triggers>
<i:EventTrigger ...
2
votes
3answers
84 views
Can a change, to a hidden input, by jQuery be listened by any event?
Maybe you understand also from the question, I am trying to trigger one change that happens to a hidden input.
<input type="hidden" name="secret" id="secret" onchange="alert(MSG);" value="0" />
...
2
votes
1answer
145 views
How to trigger the select event handler in jqueryui autocomplete combobox?
I have a jqueryui autocomplete combo-box widget in which once the user selects something in the combobox, the select event handler within the combo-box makes an ajax call to render content in another ...
2
votes
1answer
142 views
ControlStoryboardAction in the View that triggered by event in the ViewModel
<i:Interaction.Triggers>
<i:EventTrigger EventName="DownloadStartedEvent">
<ei:ControlStoryboardAction/>
</i:EventTrigger>
<i:Interaction.Triggers>
...
2
votes
3answers
3k views
Restarting a setInterval() in Javascript/jQuery (without clearInterval)
I'm working on ui tabs built using jQuery. Everything works except for one issue - I did a setInterval that runs a function that does a trigger("click") so that it goes to the next tab after 5000 ...
2
votes
1answer
82 views
Adding callbacks and triggered events to a plugin
I've added both callbacks and triggered events to a plugin as follows:
// located at the point where the event and callback should be called
el.trigger('initialized', el);
if ...
2
votes
1answer
170 views
Trigger events not working on ajax loaded html
Well After you edit in a row in this table i've created on focusout it suppose to reload the entire row with updated data, the thing is the trigger event stop working after the first load so any ...
2
votes
1answer
819 views
Problem with EventTrigger for MouseUp, it triggers only on right-button
Please take a look at the following snippet:
<EventTrigger RoutedEvent="Image.MouseUp">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
...
2
votes
2answers
260 views
How to: Create reminders that should trigger an event to be handled in a Windows application?
I need to develop a windows application with .NET 3.5 that needs to have a calendar and user can schedule appointments.
I want (not with a windows-service) that while the application is on, all the ...
1
vote
3answers
60 views
Trigger colorbox when using a dropdown
I'm trying to get individual divs with profile information to overlay using colorbox when someone selects a name from a dropdown. So, if someone clicked on 'Name 1' which has a value of #p01 in my ...
1
vote
2answers
113 views
Wordpress trigger update/publish button click from functions.php file
My custom post type section is quite long, so I've broken it up into 7 "steps" with buttons added via jquery that take the user to the next "step" by hiding the first section and revealing the next.
...
1
vote
1answer
50 views
Event trigger story
In WPF, is it possible to make an "event trigger story" based on the events that are fired?
In my concrete example, I want an event trigger that triggers on a button's mouse enter event. Then, I want ...
1
vote
1answer
85 views
Triggering an animation from an event using MVVM
I seem to have reached some sort of MVVM breaking point here.
I would like for a control to have its opacity animated for half a second (DoubleAnimation from 0.5 to 1.0) when the underlying view ...
1
vote
1answer
53 views
How can I trigger cmd+h using Mac OS and firefox?
I am using Firefox (3-6) and need to trigger cmd+h (minimize application) using Mac OS.
But I am not able to get it to work.
Problem here is that I am using a rte (this rte uses an iframe) and that ...
1
vote
1answer
199 views
SL4/MVVM: Handle MouseDragElementBehavior.Dragging event with void Foo() in VM
I am trying to handle the MouseDragElementBehavior.Dragging event on a control I have. See here for background on why I want to do this.
I am having trouble wiring up this event. From the XAML you ...
1
vote
1answer
94 views
jquery trigger: how can I trigger the browse file in the input when I click on a text link?
Following up on this post, I have another issuer - how can I trigger the browse file in the input when I click on a text link?
Basically I want to hide the form but it will be triggered when you ...
1
vote
1answer
192 views
Fade out removing item from itemscontrol
I have a WPF-View with an ItemsControl that binds an ObservableCollection from the ViewModel. Now i want to fade out slowly items which i remove from the ObservableCollection.
ViewModel:
public ...
1
vote
0answers
410 views
jquery ui sortable trigger click
I'm having some problems with jquery sortable...
It happens that after sorting, the click event of the element dropped get triggered, and on the top of this, the dragging mode doesn't get revert, so ...
1
vote
1answer
399 views
Correct way to use a Interaction Trigger on SelectionChanged Event
I have a command wired to the event such that it does fire, but what I get in the CommandParameter is the previously selected item, or maybe it's the selected item before the SelectionChanged ...
1
vote
1answer
150 views
Silverlight 3: Event trigger argues that attribute is out of range
I want to make a grid non-transparent when mouse enters. So I try to catch MouseEnter event and animate Opactity property
<Grid Opacity="0.1" Name="myGrid" >
...
1
vote
0answers
382 views
Silverlight/Blend Datatrigger/EventTrigger STRANGE issue
My usercontrol contains 3000 NewDotControls in an itemscontrol. The ControlTemplate for NewDotControl is specified in a style that defines the visualstates and there is an eventtrigger that invokes a ...
1
vote
2answers
1k views
How to use both Command and EventTrigger in DataTemplate Button?
I have a Button in a DataTemplate that is bound to a Command in my ViewModel. The button also has an EventTrigger that kicks off a Storyboard that hides the edit controls (of which the button is a ...
1
vote
2answers
1k views
XAML Binding.UpdateSourceTrigger when a Button.Click is fired?
I want to set the UpdateSourceTrigger to an event of a control:
<TextBox Text="{Binding Field, UpdateSourceMode=btnOK.Click}">
<Button Name="btnOK">
<Button.Triggers>
...
0
votes
0answers
39 views
Wait trigger event response to continue running the script Jquery
I have this script
$("#anuncios input[name=email]").live('blur',function() {
var tokening = $("#procuraform input[name=token]").val();
var $this = $(this);
...
0
votes
1answer
26 views
Silverlight. The order of triggers invocation
There is a Silverlight UserControl which got an MouseLeftButtonUp event. In xaml I add two triggers for this event. In which order Silverlight xaml-parser will parse and attach those triggers and can ...
0
votes
1answer
31 views
Cant trigger a jquery drag event properly
I'm trying to trigger the drag event of a div named ts1 when user drags the mouse anywhere in the body.
the div ts1 has a drag function on it (jquery tagsphere). What i'm trying actually to achieve ...
0
votes
2answers
26 views
What properties get changed when you click on a control?
I am trying to find a workaround to applying a setter in an EventTrigger, I want to set a property on the Click event, does any one know what property gets changed when you click a Control so I can ...
0
votes
1answer
32 views
How do I toggle my modal overlay off?
I am using jQuery tools to trigger an overlay on a checkbox 'change' event. Unfortunately, the overlay gets triggered whether I toggle the checkbox on or off.
Click on the dedicated hosting option on ...
0
votes
3answers
29 views
Use Jquery trigger method for links
Here is my sample http://jsfiddle.net/RaQtg/4/ I want to redirect my page to another URL by pressing G key, But I couden't trigger click function.
any ideas?
thanks
0
votes
1answer
56 views
How to fire a hyperlink trigger event using Jquery
Anybody suggest me how to fire hyperlink click event using jquery's trigger function?
ASPX:
<asp:LinkButton runat="server" ID="lnkClickMe" Text="Click Me" ></asp:LinkButton>
...
0
votes
1answer
59 views
C# background worker not triggering dowork event on any pc besides my own
I'm having a really weird issue with a background worker in one of my applications. I recently overhauled it slightly with some GUI fixes but now when someone on another PC runs the .exe or installs ...
0
votes
6answers
88 views
jQuery radio button change function not being triggered when it should
I have a problem with this jQuery Change function:
<input type="radio" name="words" value="8" checked><span class="word">word1</span>
<input type="radio" name="words" ...
0
votes
1answer
129 views
WPF Listboxitem event trigger show popup
I am pretty much stuck on this and need some insight. When the user mouseover's a listboxitem I want to show some details regarding the item on which the mouse is currently over (hope I am making ...