events

jQuery / JavaScript Bubbling and stopPropagation doesn't work

I'm making an edit button which pops up a modal box with a form to edit it. jQuery then sends this form to my server and I get a JSON response back. However, due to my bubbling issue, if I click on, for example, all of the edit buttons and then click on the last one and change a field, it does it across all of them. $('.edit').click(fun...

One after an other...

I'm having trouble making something happen over and over without a for loop. Take a look at this: package { import flash.display.Sprite; import flash.events.Event; public class Main extends Sprite { public function Main() { addEventListener("done", caller); caller(); ...

Hooking in to the Application.DoEvents method in VB.NET

I am not very familiar with VB.NET so I don't know if this is possible... Some code I am working on is setting the properties of a very large class. In the setter of each property an event is raised to indicate that the class data has changed. An event handler then serializes the instance of the class to a database. Obviously I do not ...

Change properties of an unknown object in VB.NET

I have a sub that handles when 14 ComboBoxes have their Index changed. I am able to cast the sender of the event, and obtain properties from there. However, after that, I want to be able to change the properties of the actual sender, rather than the cast one. How would I do this? Current code: Private Sub ComboBoxIndexChange(ByVal send...

How to get events to be handled in a particular order in C#?

I had this idea of registering an event in a base custom page on every button. I can check if it was a save or edit and then do an authorization and validation. Derived pages would still handle the click event to do the specifics for saving on that page. I wasn't sure which events would happen first. (but it probably is in order of w...

WPF Listbox + Expander events

I have an Expander in the ItemTemplate of a ListBox. Renders fine. The issue I have run into is that I would like the ListBox_SelectionChanged event to fire when the expander is expanded and/or selected. The MouseDown event does not seem to bubble up to the ListBox. What I need is the SelectedIndex of the ListBox. Because the ListB...

Event Handling For Toolbar Using Haxe Targeting Flash

I am creating a simple UI toolbar component in Haxe for use in a Flash game. The toolbar is your general UI style toolbar, it has a background and several buttons. When the buttons are clicked some game action happens. I have a question about the best way to implement events for the toolbars buttons. A parent class will create a toolbar...

Callbacks in ObjC+Cocoa

Hi, I'm relatively new to Cocoa/ObjC. Could someone please help me change my code to use asynchronous network calls? Currently it looks like this (fictional example): // Networker.m -(AttackResult*)attack:(Charactor*)target { // prepare attack information to be sent to server ServerData *data = ...; id resultData = [self se...

JavaScript keydown error in IE

<script> var personX = 18; var personY = 13; function processArrowKeys(E) { if (E.keyCode == 37 || E.keyCode == 38 || E.keyCode == 39 || E.keyCode==40) { E.preventDefault(); } if (E.keyCode == 37) { if (currentterrain[personX - 1][personY] == 0 || currentterrain[personX - 1][personY] == 1 || currentterrain[p...

Event Problem in .NET Remoting

Learning from INGO RAMMER's "Advanced .NET Remoting", I tried to use the following codes for firing events to clients: foreach (Delegate del in MessageArrived.GetInvocationList()) { try { mah = (MessageArrivedHandler) del; mah(msg); } catch (Exception e) { Console.WriteLine("Exception occured, will remove Delegate"); MessageArrived ...

Pass mouse events to applications behind from a Java UI

Hi, The question I have is exactly same in requirement as http://stackoverflow.com/questions/173579/how-to-pass-mouse-events-to-applications-behind-mine-in-c-vista , but I need the same for a Transparent Java UI. I can easily create a transparent Java UI using 6.0 but couldn't get any info about passing events through the app to any appl...

Calling void methods in IIS 7 and not waiting for them to return

I'm on IIS7 I have a button on a page. When I click it, a new thread is started which calls a void method, which takes 20 to 30 minutes to complete. The problem is the called void method stops running as soon as control is returned to the browser. (At least it appears to) protected void _Build_Click(object sender, EventArgs e) ...

How do i capture the Print Screen key?

Hello everyone. I my program i need to capture when the Print Screen key is pressed down but it is not working (however it works with other keys). I guess this has something to do with windows hijacking my authority and since im still new at this i'd love to know how i can get around this issue. Here's my current code: namespace Boom...

About WM_MOUSEHOVER, controls and Balloons

Hi, I have this code in the switch (msg) loop inside WindowProc on my GUI App. case WM_MOUSEMOVE: TRACKMOUSEEVENT tme; tme.cbSize = sizeof(TRACKMOUSEEVENT); tme.dwFlags = TME_HOVER; tme.dwHoverTime = 100; tme.hwndTrack = hwnd; TrackMouseEvent(&tme); break; case WM_MOUSEHOV...

JavaScript: Mousewheel event doesn't fire while over textbox.

I need some help. I am trying to bind to the mousewheel event from JavaScript and I've successfully done that. But something doesn't work quite as I expected. When I am over an input the event doesn't fire. I have tried to bind to the input's event for the mousewheel but the same thing happens, the event doesn't fire. ...

jQuery - IE6 problem with javascript and content loaded with ajax

I'm having problems with IE6 and javascript applied to ajax content. I'm not able to use any sort of javascript (plain or with jQuery) on the content that is retrieved with ajax. I have my main html page that loads the Header content with ajax (for this task I'm using the jQuery .load() method) Something like <html> <body> <div id="head...

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) ? ...

jquery keypress event to trigger autocomplete only on specific keycodes

I am using the jquery autocomplete plugin, and am trying to trigger the autocomplete manually based on certain keys the user enters. I'm trying to bind the autocomplete to the input on the fly so the autocomplete can start looking for matches once a user enters a certain key to trigger "I'm now entering data to be searched on", which cou...

C# Explicitly Removing Event Handlers

Hi, I was wondering if setting an object to null will clean up any eventhandlers that are attached to the objects events... e.g. Button button = new Button(); button.Click += new EventHandler(Button_Click); button = null; button = new Button(); button.Click += new EventHandler(Button_Click); button = null; etc... Will this cause a...

Intercepting XHRs

Is it possible to intercept when the browser does a XHR? Regardless of JavaScript libraries used? Like setTimeout(function() { // jQuery XHT $('#container').load('foo.html'); }, 5000); When the jQuery.load fires, I want to intercept this and add an url parameter to the request. Thanks in advance for tips and info. Best regards ...