The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

Trigger an EventTrigger by an AttachedEvent

I have a a custom Panel that raises a RoutedEvent which is defined globally in a static class : public class CompressItemsToFitStackPanel : StackPanel { protected override Size ...
0
votes
2answers
21 views

Custom EventTrigger to use RoutedEvent for animation

This is what I'm trying to accomplish. It's a barcode reader for a kiosk. main screen textBlock should say "Scan barcode" after Barcode Read Connect to a remote SQL Server to check if Barcode ...
0
votes
0answers
18 views

jQuery trigger a tab add

I'm trying to trigger an add event for a tab widget. I'm pretty sure I need to change some of the other code in the add: but until I can get to that point I'll defer. This is the structure I have to ...
0
votes
2answers
73 views

Trigger on dynamically created element

I am creating dynamic elements and upon click of a another button, a click event on the dynamically generated element need to be executed. I know on() jquery method has such a functionality but do not ...
0
votes
1answer
39 views

How can I create a callback function for jQuery's trigger() function?

I use trigger() to force a form submission and I need to execute a function after the form submission is complete. I assume the only way to do this is with a callback function, but it seems that ...
0
votes
3answers
44 views

jquery trigger key event to textbox from another text box

i want send a key event to simulate mytext2 from mytext1 . that means when i type "a" in mytext1 it should display in mytext2 also.further when i press backspace on mytext1 it should be affected in to ...
0
votes
1answer
19 views

MYSQL Update table trigger

This is just a quick question and I apologize if it's simple but I haven't been able to find any good examples, because I am sure it isn't that hard, I am just not sure on the syntax. I need to ...
5
votes
3answers
66 views

Jquery trigger event for checkbox

I've series of checkbox, for which I've written jquery script on click. When user clicks on checkbox it opens another series of checkbox and it goes on. Now my problem is when users checks few of ...
4
votes
3answers
241 views

Interaction Trigger before selectionChanged of ListPicker in Windows Phone 8

I have a issue when trigger comes in ViewModel the SelectedItem(parameter) comes the previously selected Item. I need the newly selected item as parameter on selectionChanged. I am new in WP8. Below ...
0
votes
0answers
22 views

How to prevent EventTrigger firing when scrolling in a Virtualizing RadGridView?

I am using a RadGridView, with virtualization on. I have also specifed a CellTemplate on some of the columns where I use a style with an EventTrigger set to 'flash' the cell (i.e; change the ...
0
votes
1answer
63 views

WPF Custom Control EventTrigger Not Firing Or Animation Not Working

I am having a go at creating a custom control( its just a custom grid deriving from Grid, I would like to keep it a Grid because of a few other things I want to try), my question is why doesn't the ...
0
votes
0answers
125 views

EventTrigger in XAML when a property changes?

I have this code (it's working, so far); <Image Name="img_person" Tag="{Binding Path=MyProperty1, NotifyOnTargetUpdated=True}" Canvas.Top="0" Canvas.Left="0"> <Image.Triggers> ...
1
vote
1answer
88 views

WP7 app crashes in eventtrigger with unspecified error

I'm writing an wp7 app and I have one problem with eventtrigger. I have a listbox with this ItemTemplate: <DataTemplate> <Grid Name="templatePanel" Width="200" ...
-3
votes
1answer
112 views

PropertyChanged event on viewmodel property

i'm trying to Raise a PropertyChanged event on a Property in my ViewModel using interaction triggers . CS : public string MyContentProperty { get { return "I Was Raised From an outside Source ...
-5
votes
2answers
43 views

Dynamicaly created input element with jquery [closed]

I added dynamicaly input field with jquery. And now I want to make event with jquery "focusout" but its not triggering... any ideas ? This input is created dynamicaly with jQuery. <input ...
1
vote
0answers
77 views

jQuery trigger callback function with vclick on jQuery Mobile

I am using jQuery Mobile v1.2.0 and i'm attempting to implement a callback function with the jQuery trigger function on a click/vclick on a link. This is my callback function and the trigger below ...
1
vote
2answers
110 views

jQuery mouse click event handler

I want to make some keyboard shortcuts where I want to trigger the same thing that happens when a span-box is clicked. It needs to work in IE7. How could I do this? Here's what I have so far: HTML ...
0
votes
1answer
95 views

Is it possible to open CKEditor Insert-Image Component programmatically?

For example, if I have a ready instance of CKEDITOR, and on that same page I have a list of pictures, with this markup: <div class="galleryPictures"> <a href="#image-id-1" data-id="1" ...
0
votes
3answers
169 views

Custom RoutedEvent as EventTrigger

I have my own shape class public sealed class MirrorTile : Shape and in this class I added the event public static readonly RoutedEvent SelectedEnterEvent = ...
1
vote
1answer
205 views

Updating two drop down boxes via Ajax

I have two drop down boxes that update via Ajax, both work fine when used manually. a user clicks on first drop down and selects an item that makes an Ajax call and updates the second drop down box. ...
0
votes
0answers
16 views

Check property value using eventTrigger? [duplicate]

Is there a way to check property value using EventTrigger? I would be happy if I could use a regular trigger but it is not a control template: <Polygon Grid.Column="1" Name="fan" ...
1
vote
2answers
68 views

Backbone.js event trigger

How to bind a change event to model from view to change name and display the changed name in view block. Student = Backbone.Model.extend({ initialize: function(){ this.on("change:name", ...
0
votes
1answer
58 views

Fancybox triggering

When you show 6 images (all belong to 1 album), you trigger one of this images. It should open the gallery with the selected image instead of the first image of the album. How can I accomplish this? ...
2
votes
0answers
125 views

Change textblock text on click of rectangle using XAML triggers

void rectForeHead_MouseDown(object sender, MouseButtonEventArgs e) { txtLableBlock.Text += rectForeHead.ToolTip; } void rectChest_MouseDown(object sender, MouseButtonEventArgs e) ...
1
vote
2answers
190 views

ItemsControl + Textbox + MVVM + EventTrigger Not Firing

Since I moved my View inside an ItemsControl, I cannot get the EventTrigger to fire in my ViewModel. Here is my Commmand Declaration which should fire on LostFocus: public ICommand ...
0
votes
2answers
150 views

How will I open the option list of an HTML select box from another HTML control?

How will I open the option list of an HTML select box from another HTML control? For instance, I've the following code. HTML <select> <option>Select</option> ...
2
votes
1answer
156 views

EmberJs: Custom event not received in the Router [duplicate]

Possible Duplicate: emberjs: how to trigger a custom event in a View I've created a jsfiddle to demonstrate the issue. WHen you click in the view (on the text) you will see in the console ...
0
votes
1answer
136 views

Trigger Click event on the first repeater item

I'm making a gallery site. And it plots the available photography sessions that are on the database. But when the user first opens the page, no photography sessions are selected. So the page would ...
1
vote
0answers
218 views

WPF Datagrid events DataTriggers vs EventTriggers

relatively simple question that I am struggling to find a nice elegant solution to. I have a grid with a column that displays values that update every n seconds. I wish to show an animation when the ...
0
votes
1answer
42 views

Fire an event every time part of a div overlap part of another div

I start with my apologies, because i've any code to show you. I've this problem, and just don't know what could be the most efficient, and elegant way to solve it. The problem: I've two (but maybe ...
2
votes
1answer
174 views

Event Trigger not working on Storyboard

I was just hoping you could help fill a gap in my WPF knowledge. (please forgive the generic naming, not sure if it helps) I've a custom object, MyObject, that implements INotifyPropertyChanged. It ...
0
votes
1answer
508 views

Android OnInfoWindowClickListener() never called

I'm creating an application with new Google Maps API V2 and I have to intercept the click on InfoWindow, showed when a Marker is clicked. Reading the documentation I assumed that I do that to listen ...
-4
votes
4answers
146 views

how to simulate a click on a href with jQuery [closed]

I can't trigger a click event to a href on document load. I read some answers but no one works. It's because I'm using thiese in a particular way ; it's for simulate tabs. Here is my html code : ...
2
votes
2answers
177 views

Why do the event args have no values when invoked with jQuery trigger()?

I try use trigger event. If i trigger events independently with my hands, i haven't got problem and event args content all filds that i need. If i use jquery trigger() all works, but event args ...
0
votes
2answers
47 views

Javascript method execution and triggering event

I am having trouble to clear a concept; say I have the following code snippet: $('a.classA').on('click', function(){ // something do here }); $('a.classB').on('click', function(){ // something ...
0
votes
2answers
55 views

Create an Alert on Windows Dekstop via PHP?

I've been searching on the internet and have come back with nothing, so I'm asking for no one to do this for me, only asking two simple things. is it possible to create a desktop alert by running a ...
1
vote
4answers
63 views

How trigger an event that's out reach from the current class?

In C# WinForms, I have created a User Control and, for the sake of this example, let's suppose that inside it I have created a button and it trigger an event when I click on it. I add this custom ...
0
votes
0answers
42 views

Turbolinks and Google Translate

Is there a way to trigger Google Translate to look at the chosen language and translate it when loading pages with Turbolinks? Because now when I choose to translate the page into another language ...
0
votes
0answers
75 views

Programatically typing on android soft keyboard

I doing some research about different type of interaction and I'm trying to figure out if its possible to problematically triggering some touch events on soft keyboard. The reason for this is that ...
2
votes
1answer
117 views

Why Trigger on `IsKeyboardFocusWithin` doesn't work when the value is false?

I want to change the InputLanguage on Textbox.GotFocus and Textbox.LostFocus,so i do this: <Style TargetType="{x:Type TextBox}" x:Key="EnglishTextStyle"> <Style.Triggers> ...
0
votes
0answers
84 views

Key Combinations on the Key Trigger

<i:Interaction.Triggers> <ei:KeyTrigger FiredOn="KeyUp" Key="H" Modifiers="Shift" > <ei:CallMethodAction MethodName="test" TargetObject="{Binding ElementName=userControl}"/> ...
0
votes
1answer
69 views

Rotate image on BackgroundWorker.DoWork

I have a background worker which works as desired. But I would like an image in my view to rotate continually from the moment backgroundworker.DoWork is called until backgroundworker.completed is ...
3
votes
2answers
410 views

Getting EventArgs when using interaction triggers

I'm using this way to catch events from XAML: <i:Interaction.Triggers> <i:EventTrigger EventName="MouseWheel"> <ei:CallMethodAction MethodName="ChangeValue" ...
2
votes
1answer
207 views

Add Trigger into Magento Tables to update quantity

I'm trying to add a trigger on table cataloginventory_stock_item in magento database to modify the field quantity for all products that have the same part of an sku string. However the result showing ...
0
votes
0answers
101 views

wpf tree view not firing events

I need a little help. In my TreeView Triggers never activate, does not even when it is set on 'Initialized', and I don't know why. I want to use MouseDown or GotFocus to determine in my ViewModel ...
1
vote
2answers
139 views

MySQL Trigger on UPDATE not sending hours data to stats table

I have a MySQL trigger to update hours into a stats table based on UPDATE query being ran. The trigger is: DELIMITER // CREATE TRIGGER update_stats AFTER UPDATE ON user_hours FOR EACH ROW BEGIN ...
0
votes
0answers
13 views

Event driven \ triggers for marketing emails [closed]

I'm working on some project and I'm wondering to my self which way to take. I need to send emails \ give bonuses based on user activities and I want it to be dynamic. Any ideas (Rules on the DB \ ...
0
votes
1answer
133 views

troubles with fadeIn()/fadeOut(); jquery

got button named 'notebutt' vith 'oncklick' func function is very simple user click's on button and div is fadeIn(), click again and div must fadeout(); notebutt.bind("click", function () { ...
0
votes
1answer
80 views

Backbone change trigger is never called

I'm trying some backbone.js examples and can't get change triggers to work. The "Welcome to this world" alert shows up as expected, but "Changed my name to" is never shown. Debugging the code with ...
1
vote
2answers
90 views

How to pass html element reference via .change trigger

I have a function named showStuff() that I want called once during init and again when a select field changes. I need to pass a class or id name to the function but this won't work: ...

1 2 3 4