Tagged Questions

0
votes
1answer
25 views

VB.Net event handler registration for nested linkbutton

Hi All, I have a linkbutton that is nested in a datagrid that is nested in a datalist (yes, very strange, but unfortunately it's part of the site which I cannot change). Essentially I want the …
0
votes
2answers
49 views

(javascript) why do i need to use a wrap function for event handlers?

I'm trying to understand why in the following code I need Dragger.prototype.wrap and why I can't just use the event handling methods directly: function Dragger(id) { this.isMouseDown = false; …
0
votes
1answer
27 views

(javascript) what is the wrap function used for regarding event handlers?

I'm trying to understand why people use a wrap function for my event handlers. For example: Example.prototype.wrap = function(obj, method) { return function(event) { obj[method](event); } …
0
votes
3answers
83 views

How to obtain the HttpContext in Event Handler

Hello, I’m trying to obtain the HTTPContext within an Event Handler in a Document Library in MOSS, but all I have is a null value of the HTTPContext.Current, I do the same thing on a List and the …
1
vote
4answers
204 views

Can I late bind to event handlers in C#?

I'm creating objects dynamically and inserting them into an html table, the objects are either labels or linkbuttons, if they are linkbuttons i need to subscribe an eventhandler to the click event, …
0
votes
4answers
2k views

How to add event handlers to composite panels in GWT 1.6

This is probably a really simple thing, but I don't know how to implement the following. package mods.client.resultSelector; import com.google.gwt.event.dom.client.MouseDownEvent; import …
1
vote
4answers
179 views

Viewing all event handlers associated with a Button?

I have a number of Inherited User Controls, for each User Control I sometimes have overridden event Handlers for the Buttons on the Control. (To allow for Child specific behaviours to occur) Is there …
1
vote
4answers
1k views

jQuery Multiple Event Handlers - How to Cancel?

I have two functions bound to a click event at two different times (using jQuery). The order in which they are fired is significant. They are firing in the correct order. The problem is, when the …
0
votes
5answers
138 views

Java event handlers

Hi, I am writing a small Java app (on Windows, hence the _on_vista appended to my name). I got 3 buttons, all of which will react to a click event, but do different things. Is the following code the …
4
votes
4answers
491 views

Lambdas for event handlers?

Lambda syntax in C# 3 makes it really convenient to create one-liner anonymous methods. They're a definite improvement over the wordier anonymous delegate syntax that C# 2 gave us. The convenience …
1
vote
1answer
268 views

When Are Custom Event Handlers Attached ?

I have a UserControl inside a GridView. When are the Custom Event Handlers attached to the UserControl ? Please tell me because I have no idea. In the scenario below the UserCreated event handler is …
1
vote
5answers
630 views

Registering an event handler for a single list

I have a sharepoint event handler which I want to activate for a single list, not all the lists in the site. How do I go about this?