1
vote
1answer
20 views
jquery event - getting the context
Hi,
if I have :
$('.someClass', $('#context1,#context1')).bind('click',
function(e){
// XXX
}
);
how can I know in point XXX , which context (context1 or context2) is the one that the …
0
votes
3answers
33 views
On Win32, how to detect whether a Left Shift or Right ALT is pressed using Perl, Python, or Ruby (or C)?
On Win32, I wonder how to detect whether Left Shift or Right ALT is pressed using Perl, Python, or Ruby (or even in C)?
Not just for the current window, but the global environment overall. …
0
votes
2answers
115 views
Why is this javascript not working?
This is in continuation of the question:
http://stackoverflow.com/questions/1801960/innerhtml-working-in-ff-but-not-in-ie
The above problem is resolved [ thanx to pygorex1 ] . But i would like to …
2
votes
2answers
32 views
Programmatically adding buttons - Problem with subscription to a mouse event
Im adding a list of buttons in code and also subscribing to their mouseleave event. For each button i subcribe to the event with an anonymous function, the problem is that when I run the app they are …
1
vote
2answers
53 views
Why? Redeclare things to implement interfaces?! in VB.NET
Hello, experts.
I work in VB.NET v2
I have an interface IMyInterface and this interface implements a method MyMethod.
I have an object MyObjectBase. This object contains a(the same) method …
0
votes
2answers
43 views
How can I capture the enter key in Firefox 3.5 and redirect the page using Window.Location?
I am trying to implement a search functionality that is capturing the enter key and redirecting to a different page in an ASP.NET 3.5 application. Unfortunately it does not work in Firefox (version …
3
votes
2answers
70 views
C# - Event Design considerations
I want an event notification system that should notify the doctor when the heartbeat of the patient is greater than 120.I do not know, How to design such system. Just I have implemented the wrong one. …
0
votes
1answer
31 views
Async Controller asp.net mvc 2.0
Currently MS has been release asp.net MVC 2.0 beta with the AsyncController in it but there are very few document about this except one document at: …
0
votes
2answers
34 views
ObjectdataSource Inserting event not firing up ?
Hi I have an objectDataSource and i am trying to pass an object as parameter in its
Inserting event. For some reason the "Inserting" is not getting fired up before Insert is called.
It is not getting …
2
votes
3answers
81 views
Can JavaScript detect when the user stops loading the document?
I'm implementing Comet using the script tag long polling technique, based on this page.
One issue (that I don't think there's a solution for) is the "throbber of doom" - the browser continues to show …
1
vote
3answers
59 views
Raising an event thread safely
I'm sure I've seen this around before but I'm wondering how I should raise an event thread-safely.
I have a message despatch thread which looks somthing like.
while(_messages > 0){
Message …
0
votes
2answers
39 views
C# - modify button.click event to pass data?
Hi,
I am programatically creating buttons and each button has a tag binary array. While creation I am binding an event Button.Click but I do not know how to add parameter since the eventhandler is …
1
vote
6answers
62 views
Is it possible to create eventlisteners for string, int, bool at all?
Is it possible at all to create eventlisteners (i.e. when the value changes) for a variable of type string, int, bool, etc.?
I haven't seen this in any programming language so far, except for some …
1
vote
2answers
20 views
Disable Return key outside textareas on a Asp.Net web page (containing ajax code)
Hi,
I have an Asp.Net web page, having the common Asp.Net form. The outer "border" of the page (i.e. main menu, header, ...) is build using normal Asp.Net code using a master page. The content of …
0
votes
1answer
19 views
CommandBinding Ctrl + Spacebar
I handle commands inside a RoutedCommand class that implements RoutedUICommand. This would help me to block or override a command by checking their CanExecute and Execute if needed. I can override …
