Tagged Questions

0
votes
2answers
45 views

AS3 dispatch events to objects not related on the display list

So, events bubble up the display list. That's great if that's what you want. But what if you have objects on the stage that are not related that need to listen for events from each …
0
votes
1answer
36 views

Bubbling scroll events from a ListView to its parent

In my WPF application I have a ListView whose ScrollViewer.VerticalScrollBarVisibility is set to Disabled. It is contained within a ScrollViewer. When I attempt to use the mouse wh …
0
votes
1answer
76 views

jQuery hover over child elements makes quirky effects

Hi I've got this markup (simplified): <div class='item'> <a> one link </a> <a class='trash'><img src='trash.png'/></a> </div> I'm …
0
votes
3answers
133 views

Event bubbling and the onblur event

I'm writing a form validation script and would like to validate a given field when its onblur event fires. I would also like to use event bubbling so i don't have to attach an onbl …
0
votes
3answers
82 views

find out instantiating object in the constructor of a class

How can i get hold of the instantiating object from a constructor in java? I want to store reference to the parent object for some GUI classes to simulate event bubbling - calling …
1
vote
2answers
383 views

jQuery event bubbling: Get original element mouseover (for table row highlighting)

Hello, I'm trying to reduce my 'onmouseover' event listeners in my table (in which I highlight rows on hover). I want to do this by attaching an event listener to the entire table …
4
votes
2answers
114 views

What is the bubbling concept?

I've heard of events and SO answers "bubbling up", but what has all that got to do with bubbles?
0
votes
6answers
211 views

Span inside Anchor with event bubbling

Hi, I have such a piece of html: <li class="addToFriends"><a href="....">Something something<span>INSIDE SPAN</span>something</a></li> To ha …
0
votes
3answers
101 views

ASP.NET How can 2 dynamically loaded user controls respond to each others events?

Greetings All, I have two ascx's loaded in the page-init event of an aspx page. Control 1 has a radio button list that I want a dropdown list on control 2 to respond to it's select …
1
vote
2answers
68 views

Where can I find a good tutorial on bubbling?

I'm new to C# and would like to allow to Windows forms to comminicate with each other. I googled bubbling in C# but it wasn't much help. What are some good ways I can learn bubblin …
0
votes
4answers
139 views

Is event bubbling supported by all browsers?

jQuery uses event bubbling strategy to handle events. And it claims to be cross browser, but is "event bubbling" supported by all browsers? There is another strategy: event capt …
1
vote
2answers
59 views

Where can I catch up on event bubbling in web programming(Esp. RE: the YUI)?

Dear Stackoverflow; Can you provide some good reading material on event-bubbling, especially in regards to the Yahoo User-Interface libraries (YUI) ?
0
votes
1answer
122 views

Firefox DOM2 mouse down event selects elements when using stopPropagation

I have a link element where I capture the mousedown event and stop the event from bubbling so that other elements in the page don't get selected. However in firefox (3 & 3.5) w …
3
votes
4answers
1k views

jQuery hide element when clicked anywhere on the page

I would like to know if this is the correct way of hiding visible elements when clicked anywhere on the page. $(document).click(function (event) { $('#myDIV:visible').h …
0
votes
1answer
366 views

jquery accordion prevent bubbling / allow default link action

I have an accordion setup as so: $('.shortheadline').accordion({ active: false, header: '.headline', autoHeight: false, animated: 'slowslide', changestart: function(event, ui) { …

1 2 next
15 30 50 per page