The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

Google AdMobs sdk is not passing the request on to the next banner network when a CustomEvent banner fails

The current flow in our mobile app is: - The mobile device sends a request to DFP for a banner - DFP sends a request to a network without an adapter (YOC group network) - If the YOC request fails then ...
1
vote
1answer
57 views

Google AdMobs custom click events not working with unsupported network

I am using Google AdMobs DFP to serve up mediation banners from other networks. I have added Millennial and InMobi fine but now I need to add a network (YOC group) that does not have an adapter for ...
0
votes
1answer
201 views

emberjs: how to trigger a custom event in a View

I would like to turn a primitive event (a click) into a semantic event, like "deleteTodo" This is described here, but not how to implement :( I have the following code: App.TodoView = ...
3
votes
1answer
450 views

Kendo MVVM and binding or extending custom events

I have a ComboBox in my page and I want to bind keypress event to my Kendo ComboBox when the cliend writes down any letter. As I understand kendo doesn't have any keypress event on ComboBox. I've ...
1
vote
0answers
96 views
+50

How to extend jQuery's animate-step function

Any ideas how to extend the step-function in jQuery 1.6+? I've made a special-event to trigger a custom-event on each animated step. However since jQuery's animation method was changed, or rather the ...
0
votes
3answers
68 views

Error While Attempting to Use Custom Events

I am trying to use the information from the Passing-Data-between-Windows-Forms white paper to write some custom events to pass information between forms. Unfortunately, I keep getting a ...
0
votes
1answer
26 views

Custom property event not works

I intercept all the click events in my iframe with this code: $(doc.body).on("click", function(e) { if (e.from === undefined) { e.preventDefault(); e.stopPropagation(); ...
0
votes
0answers
92 views

Why isn't my Google Analytics Custom Event firing on my a tags?

I've attempted to setup Custom Events in Google Analytics on the below tags. However, I look in Google Analytics and I don't see it firing for any of below three links. How can I fix this? <!-- ...
0
votes
1answer
146 views

jQuery get param value of custom event

If I have got: blockRoutes = function (value) { $('body').trigger('cantLeaveRoute', { val: value }); return value; } Except in binding callback like: this.bind('cantLeaveRoute', ...
0
votes
0answers
14 views

Capture custom event of any program in windows

I have a proprietary software running on windows 2008 server. I want to capture the event whenever I click on of the button in the software and do some batch programming work. How can I achieve that? ...
2
votes
0answers
109 views

Dispatchevent not working in native extension for ios

I've build a native extension for my project to fire two event about login and logout,this is code (NdPlatformExtension.as), the extIntance for singleton have tried but get same result,so ignore it. ...
0
votes
2answers
25 views

Allowing Users to Handle an event in place of a default event

I am building a custom control and what i would like to do is have an event lets call this event OnMenuShow. Now what i would like to be able to do is handle this event inside my control to show one ...
1
vote
0answers
140 views

Flex Custom Event - Type Coercion Error - Application domain related?

I've been looking at answers for my problem, I think I may be on the right track but I just can't understand how to implement the solution. I need help. I have a class, ...
4
votes
1answer
118 views

What is better in JavaScript Custom Events or normal Function calls?

In Js code if there are two js objects(One Handling a UI(example a Form) and other posting a request to a server. What would be the better way to interact between these components using Custom Events ...
0
votes
3answers
79 views

[Event(name=“”)]: How is it used and how do custom events work?

I have to work on a project someone else started, but can't contact him because he's out of the country at the moment. Anyway. There is a main mxml and a custom component called "admin". In admin he ...
0
votes
3answers
2k views

jQuery trigger not firing with bind() or on() for custom events

Can anyone tell me why this code would not be working? $('body').on('test', function() { alert('test'); }); $('body').trigger('test'); I'm using jquery-1.7.2.min. I do not get any errors, just ...
0
votes
1answer
200 views

jquery custom events return value

I am trying to learn more about jquery custom events so I have made this simple code to make tests: <!DOCTYPE html> <html> <head> <title>Jquery custom ...
0
votes
2answers
3k views

jQuery scrollstart, scrollstop and very quick scrolling issue

I'm having an issue with James Padolsey's custom events: scrollstart and scrolltop When I use the mouse wheel to scroll one "notch" or I click the scroll bar somewhere far below or above its current ...
0
votes
6answers
454 views

How to create a custom event in jquery

I want to create a custom event that will be triggered whenever a numeric value is entered in an input type="text". Alphabets should be ignored. change and blur events didn't work well for me. Any ...
0
votes
3answers
1k views

Flex 4 disptaching custom event from custom component

This is similar to the question asked here. I am dispatching custom event "ShopEvent" but i am getting error "Type Coercion failed: cannot convert flash.events::Event@81ecb79 to com.events.ShopEvent" ...
0
votes
1answer
142 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 ...
1
vote
1answer
185 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 ...
0
votes
1answer
146 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
353 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
58 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
106 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
145 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 ...
4
votes
2answers
2k 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
1k 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
114 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
161 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
251 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 ...
1
vote
2answers
201 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 ...
0
votes
3answers
426 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
156 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
323 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
65 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 ...
1
vote
2answers
271 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
1answer
174 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)); ...
1
vote
3answers
4k 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: ...
16
votes
4answers
2k views

jQuery: How to use event.preventDefault() with custom events?

How can I know in my triggering code that preventDefault has been called? $(document).trigger('customEvent', params); if (/* ??? */) doDefaultActions();
0
votes
3answers
203 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 ...
1
vote
6answers
1k 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 ...