2
votes
1answer
50 views

Swing: Delegate events to child components of transformed parent

I've got a custom component GameViewCanvas extends JPanel that will hold a number of tiles (800x800 textures). Now in GameViewCanvas I've overridden the paint() method, so that it will paint the ...
0
votes
0answers
53 views

Delegate events best practices for web development

Here's a situation - i have an one-page web app with different sections and i load them asynchrously. And while im loading them in init method i delegate events with jQuery to a parent container. ...
0
votes
1answer
158 views

Ignore child elements using jQuery event delegation

I am using the on method to delegate a click event to injected divs. These injected divs will have child divs as well that are positioned outside of their parent div. I am looking to ignore the click ...
1
vote
0answers
403 views

Event bubbling/capturing/delegation in ember

It is hard to expliain the actual code as i dont exactly know where the problem is, but it will be great if anyone can help in explaining how events are delegatd/bubbled in Ember. I have a case where ...
2
votes
0answers
159 views

Google Closure event delegation a'la jQuery live/on

I need to delegate event to newly created elements, I need to attach handler to their creation event. Something similar to: onCreate I do not want to bind the event to the element after the creation ...
4
votes
2answers
4k views

Delegating events to a parent view in Backbone

My view, TuneBook, has several child views of type ClosedTune. I also have separate full page views for each tune, OpenTune. The same events are bound within ClosedTune and OpenTune, so I've designed ...
0
votes
1answer
969 views

jQuery 1.7.1 $(document).on delegation does not work with selector on disabled element

My HTML (not dynamic) looks like this: <select id="domain" class="marketplace"> <option>United States</option> ... </select> This works: $(document).ready(function() { ...
1
vote
1answer
143 views

Bubbling issue with delegated event on parent node with JavaScript

I'm having problems getting my event to bubble correctly I believe in a delegated event. I have some markup like: <div id="wrapper"> <!-- more HTML --> <div class="clear"> ...
5
votes
2answers
770 views

Javascript event delegation, handling parents of clicked elements?

http://jsfiddle.net/walkerneo/QqkkA/ I've seen many questions here either asking about or being answered with event delegation in javascript, but I've yet to see, however, how to use event delegation ...
-1
votes
2answers
261 views

Rectangular Shapes Events Programmatically

public class Car { public string StreetName; public RectangleShape Car_Shape; public int ArrivalTime, Axis, Lane; public string Direction; public double Car_Delay; public bool Mobile; ...
0
votes
1answer
205 views

Using jQuery's .live/.bind to affect input created by a for loop

I have two arrays, one with input names, and one with the value to give each input. There are 7 inputs, so I made a loop to fill out each input with it's value, then make it so that the text will ...
0
votes
2answers
356 views

ASP.NET - How to propagate events with nested user controls

I have nested controls on a page. Ex: Page -ChildControl1 (of type AllOfMyItems) -ChildControl2 (of type ListOfItems) -ChildControl3 (of type MyItem <- this one fires event) ...
1
vote
1answer
124 views

Event and Delegate Test

Please tell me what's the different between Class1 and Class2 or the different between Event and Delegate ? I test my class in Form1 and have the same result //Class1.cs using System; using ...
1
vote
1answer
600 views

jQuery Event.Target Problem

I don´t know if I have forgotten how to do so or if it´s a bug, but I just can´t find the caller's reference in the "click" event using jQuery. I´m doing the following: $(document).ready(function() ...
1
vote
1answer
293 views

jQuery's delegate() not running properly in Safari, works fine in all other browsers

I'm working on a JavaScript-based banner for a client and have hit a wall. The banner runs fine in Chrome, Firefox, IE7 and 8. Safari, however, allows the user to close the banner once and open it ...
1
vote
1answer
540 views

How to prevent delegated handlers on a parent without preventing default in jQuery?

Is there any way to prevent a click from an <a> triggering delegated click handlers on its parent, while allowing the the <a>'s default behavior to occur (navigating to the href). Here's ...
0
votes
1answer
471 views

Help with c# event listening and usercontrols

OK so I have a page which has a listview on it. Inside the item template of the listview is a usercontrol. This usercontrol is trying to trigger an event so that the hosting page can listen to it. ...
1
vote
1answer
864 views

Mootools 1.2.4 delegation not working in IE8…?

So I have a listbox next to a form. When the user clicks an option in the select box, I make a request for the related data, returned in a JSON object, which gets put into the form elements. When the ...
1
vote
1answer
715 views

change event on a table fails in IE

I am using jQuery to capture a change event on a table. The table has many rows and each row has a few inputs boxes and a checkbox. To do this, I am using event delegation. I am capturing any ...