Tagged Questions
The custom-events tag has no wiki summary.
7
votes
5answers
954 views
jQuery: How to use event.preventDefault() with custom events?
How can I know in my triggering code that preventDefault had been called?
$(document).trigger('customEvent', params);
if (/* ??? */)
doDefaultActions();
3
votes
2answers
270 views
Passing anonymous function to custom event trigger in Javascript/jQuery
I'm trying to trigger custom events on DOM elements and pass anonymous functions to be executed when the event is triggered (using jQuery). So something like this:
$(some-dom).live("custom_event", ...
1
vote
1answer
25 views
Simplest Method to monitor changes between combo box values
I'm looking for an elegant way to track changes between values for a combo box. What I'm looking to do is fire a custom event when the SelectionChanged event happens, but only for a specific value ...
1
vote
2answers
127 views
How to run function only when parameter variable has been assigned?
I need a way to wait running the parseCSV command until the readFile event has updated the content of importData. I have seen a few things about custom event dispatchers but cannot quite figure out ...
1
vote
2answers
182 views
Custom Event - invokation list implementation considerations
I'm looking for some pointers on implementing Custom Events in VB.NET (Visual Studio 2008, .NET 3.5).
I know that "regular" (non-custom) Events are actually Delegates, so I was thinking of using ...
1
vote
3answers
2k views
wxPython: Threading GUI --> Using Custom Event Handler
I am trying to learn how to run a thread off the main GUI app to do my serial port sending/receiving while keeping my GUI alive. My best Googling attempts have landed me at the wxpython wiki on: ...
0
votes
1answer
27 views
dispatch event with bubbles on a class that do not appear on the stage
I have small swf as3 flash applications that are loaded by a main flex application.
The main Flex Application contains an SWFLoader and i added an event listener on
SWFLoader.content to fetch custom ...
0
votes
1answer
32 views
How do I add an event to URLLoader Class?
Keeping into consideration the Actionscript 3 event HTTPStatusEvent:HTTP_RESPONSE_STATUS, which is ONLY AVAILABLE for AIR (and not Flash 9/10)
Quote from site:
Language Version: ActionScript 3.0
...
0
votes
2answers
122 views
How can I implement publish / subscribe “pattern” in javascript between a website and a google chrome extension?
I'm trying to implement a pub/sub pattern between a website and a google chrome extension. Most of my experimentation thus far has been using jQuery due to its strong bind/trigger syntax but I've ...
0
votes
0answers
18 views
custom events 1.1 to 2.0
I've recently had to edit an assembly on SqlServer 2005. I think the assembly is targeting .net 1.1 (since it needs to be converted in vs2008). I've managed to extract the dll, put it into reflector ...
0
votes
2answers
38 views
Trigger code when custom event is being bound in jQuery
JQuery has great support for custom events - .bind("foo", function(e).... However what if the mechanic of triggering the event is not ready yet and has to be constructed only on those elements that ...
0
votes
0answers
85 views
Flex - multiple individual custom events or one more general custom event?
In Flex, let's say I have a parent application with a viewstack as a child, which in turn has multiple children, let's say childA, childB and childC. Whenever I want to make a change to one of the ...
0
votes
1answer
467 views
jquery ui- (slider) custom event binding not working
I have a bit of a problem working out why my custom event does not trigger and work correctly... My custom event should be attached to each column, how can I get the slider to be bound to only one ...
0
votes
1answer
63 views
How do you drill in to Google Analytics custom event data?
What do people use to dig in to Google Analytics data?
For example, I have a web page that tracks a custom event on it. I'd like to track a couple metrics:
1) What percent of users on that page ...
0
votes
1answer
73 views
How to track which pages caused custom events in Google Analytics?
I have multiple pages being tracked by google analytics. On all these pages I have an outbound link for which I make a call to create a custom event - the action is named the same on all the pages.
...
0
votes
2answers
160 views
jQuery custom event sequence
I'm creating a custom JS object. This object performs some action.
I want to be able to notify consumer of the object (by triggering custom events) that action will be performed and action is already ...
0
votes
3answers
153 views
Custom JQuery event firing in one place but not another
This is probably just my own ignorance of how events work, but can someone explain this: A custom event will not fire at the top of a function, but will fire in a callback inside that function.
The ...
0
votes
1answer
112 views
Flex Error on Simple Custom Event when Implemented in Actionscript (But not in MXML)
I'm trying to learn how to use custom events in Flex.
I'm following Oliver Merk's tutorial found here: blog
The custom event works if I implement it using MXML in the main app. But, if I use ...
0
votes
1answer
198 views
Change content of a Label depending on panel size
once again I've got a question. Since I am using Google Web Toolkit (GWT) at work (along with Java Servlets), I am currently building some user interface with GWT (in Java).
I've got some trouble ...
0
votes
3answers
54 views
Events in Classes
I find that I write a lot of code within my classes to keep properties in sync with each other. I've read about Events in Classes, but have not been able to wrap my head around how to make them work ...
0
votes
1answer
128 views
Class as an Event Observer
I want to do something like this...
var Color = Class.create({
initialize: function() {
this._color = "white";
this.observe("evt: colorChanged", this.colorChanged.bind(this));
...
0
votes
3answers
144 views
Problems with ASP.NET and custom events
I have a problem when handling the ReceiveCompleted event of a MessageQueue in ASP.NET.
It catches it successfully, but every changes applied to the Controls of the page have no effect.
This is what ...
0
votes
6answers
582 views
Attaching a property to an event in Flex/AS3
I have a parameter that needs to be passed along with an event. After unsuccessful attempts to place it on the type by extending the class, I've been advised in another SO question to write a custom ...