Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
8answers
946 views

Firing an event / function on a property? (C#)

I am using a class that I cannot edit, it has a property (a boolean) of which it would be nice to be informed when it changes, I can't edit the properties get or set as I am importing the class from a ...
4
votes
4answers
16k views

ASP.NET TextBox LostFocus event

I need to trigger code on the server side to be called when a TextBox loses focus. I know there is the onblur client side event, and that there is no LostFocus event, so how can I cause a postback to ...
3
votes
2answers
37 views

Wrong Derived Class Methods Execution on Event?

public Class A { public A() { someotherclass.someevent += new EventHandler(HandleEvent); } private void HandleEvent(object sender,CustomEventArgs e) { if(e.Name == ...
3
votes
1answer
353 views

Is there a jQuery Equivalent of YUI 2 Custom Event Publish/Subscribe Event Model?

I learned how to develop in Javascript using the YUI 2 library and was wondering if there were a jQuery equivalent of Custom Events (http://developer.yahoo.com/yui/event/#customevent) Specifically, I ...
2
votes
1answer
46 views

How do I detect a transition end without a JavaScript library?

I'd like to delete an object after it's done animating with a CSS transition, but I'm not able to use a JavaScript library. How do I detect when the animation is done? Do I use a callback or custom ...
2
votes
2answers
124 views

Custom Events in ASP.NET

I want to handle a custom event on an asp.net page with C# as my code Behind. I want to increase the size of the search text box on clicking it. It should be somewhat like this... I know this can ...
2
votes
3answers
975 views

ExtJS add custom event to body

is to possible to attach custom events to the document's body? I wanna implement a simple message bus. I did it many times with jQuery, but not sure how to do it in ExtJS. Thank you.
2
votes
2answers
371 views

Custom events (observer pattern)

I can not find how to implement this (I apologize for the freestyle record): //assign the event handler for the object "myObj" myObj.onMyEvent = //do something //if something happened ...
1
vote
2answers
92 views

Custom event in HTML, Javascript

I'm looking to create a custom event in HTML, JS. <input type="text" oncustombind="foo(event);" /> How can I create one such? 'oncustombind' is the custom event I want to create. I should be ...
1
vote
2answers
198 views

Why my custom event in C# is not raised?

It's not the first time I've created a Custom Event in C#. It boggles my mind why it doesn't work in this simple case. I have a Publisher with Subscribers. In my main program, I instantiated 1 ...
1
vote
2answers
79 views

Cutom event dispatchment location

I've been looking into custom event (listeners) for quite some time, but never succeeded in making one. There are so many different mehods, extending the Event class, but also Extending the ...
1
vote
1answer
2k views

How to work with delegates and event handler for user control

I have created a user control that contains a button. I am using this control on my winform which will be loaded at run time after fetching data from database. Now I need to remove a row from a ...
1
vote
1answer
87 views

WPF- Is it possible to add an OnVerticalOffsetChanged event to a custom textbox?

Is there any way for me to do this?
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
1answer
534 views

YUI Custom Event for Dropdown value pre-selection?

I have a dropdown field and its value is pre-selected as soon as its rendered(Say, its a Country field in a signup form). And I have other dropdowns or other components which change the selected value ...
0
votes
0answers
38 views

jQuery: How do I toggle a custom event on and off with my checkboxes?

I am trying to toggle the firing of an overlay on and off using checkboxes. What I want is for the overlay to NOT FIRE when the checkbox is toggled off. Here is my live ...
0
votes
2answers
99 views

Custom Events in C#

I have made some progress from my last question here: Event Text Postback from Multithreaded Class to Windows ActiveForm I also made some progress with this: ...
0
votes
1answer
56 views

custom plugin events in GWT

We have coded a browser plugin. It fires custom events like 'mycustomevent'. I need to incorporate (i.e. assign listeners for) these custom events into GWT. Here is my plugin class in GWT. class ...
0
votes
1answer
102 views

Send data from popup to main application.

I'm not getting the answer I'm looking for. I want to send the request data i get to the main application. <?xml version="1.0" encoding="utf-8"?> <mx:TitleWindow ...
0
votes
1answer
32 views

actionscript3 custom event in flash

I want to dispatch a custom event at the end of my movieclip. I wrote the code on the last frame: stop(); import flash.events.Event; var evt:Event = new Event('finishedWriting', true); ...
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
2answers
107 views

Binding and triggering native and custom events in Prototype

Hey guys... I'm having a bit of issue with events in prototype. I'm trying to bind and fire the native events: onhashchange, and onpopstate. As well as my custom events: statechange and anchorchange. ...
0
votes
2answers
225 views

Custom Events in pygame

I'm having trouble getting my custom events to fire. My regular events work fine, but I guess I'm doing something wrong. Here is the relevant code: evt = pygame.event.Event(gui.INFOEVENT, ...
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
2answers
233 views

Yahoo UI Custom Button

I have a YUI button defined through HTML markup. I managed to get it loaded and "skinned" properly. The problem is a custom click event. I have tried a number of approaches all of which links the ...
0
votes
4answers
349 views

Custom Actionscript 3.0 Events: Build separate Classes for different purposes or use one for all?

I'm using custom Events in Actionscript 3.0 for the first time and I'm unsure about how to best design them. I need a couple of Events. Some of them need to transport different kinds of data and some ...
0
votes
2answers
145 views

jQuery custom event

Why isn't this being triggered? $('#nav').bind('app:event', function (event, status) { console.log([event, status]); }); when this is: $(document).bind('app:event', function (event, status) { ...