An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object
0
votes
3answers
87 views
if jquery live event code has been removed, do i still have to unbind it?
im loading pages with ajax and also loading pages javascript code with it.
i wanted to know, if i remove page javascript code, which has jquery live bind event on it, will it kill the binding or do ...
2
votes
1answer
18 views
event.originalEvent jQuery
I am currently immersed in the jQuery learning center. Im going from start to end... I just read this paragraph:
It's also important to note that the event object contains a property
called ...
1
vote
1answer
11 views
Is events.EventEmitter.call(this) required when creating a custom EventEmitter?
There are a lot of example not using events.EventEmitter.call(this) in custom event emitter constructors, while other are using it (official documentation):
var events = require('events')
, util ...
0
votes
1answer
13 views
Google Calendar API server side access
I implemented an utility to perform background operation using Google Calendar API and server side authentication flow without user interface.
Now I would like to read events from a private calendar ...
1
vote
2answers
646 views
get value inside textbox dojo widget at run time
I am using dijit.form.TextBox in my project and I want to get the run time value being changed inside textbox for using at some other place(in grid). When I use onChange event I get the old value ...
0
votes
0answers
9 views
TouchUp Events on Sur40 vs. InputSimulator
Are TouchUp Events different handled in SUR40 and on the Microsoft Surface Input Simulator?
actualNode.TextContainer.TouchUp += delegate(object sender, TouchEventArgs args)
{ ...
0
votes
0answers
17 views
Flex Spark RadioButton Deselected Event?
Is there a way to listen for this? I can easily listen for click which selects a RadioButton, but I can't seem to find a way to listen for when the RadioButton has been deselected.
Any ideas?
...
1
vote
3answers
254 views
Is it possible to create an event in an abstract class?
I have abstract class
public abstract class BaseClass
{
public delegate void ContextMenuClickHandler(object sender, Point point);
public event ContextMenuClickHandler OnContextMenuClick;
...
1
vote
3answers
43 views
jQuery - off() and on() inside handler function
I use jQuery .on() method to attach event handler function to all div elements inside another div element with id "w1" but inside event handler function I want to detach that event before ajax call ...
0
votes
1answer
266 views
Jquery image fade - losing mouse over effects
I try to do this image effects: http://coverdesign.ro/teste/lore/ but sometimes when the mouse move from one object to another it lose the hover state;
I use this js script:
$(function () {
...
0
votes
2answers
60 views
How do i detect new columns added to a list-view control?
I am writing a component that descends from TListView, and I want to know when the developer using this component adds a column so I can react. How can I detect when a new column is added? Is there an ...
1
vote
0answers
11 views
Raising obfuscated events with moq throws error
We have using Moq for two month now. However there is a problem which can not solve somehow.
In visual studio all tests succeeded just fine. On the build server there are serveral tests which failed. ...
0
votes
1answer
32 views
DataGridViw ComboBox Column Event SelectedindexChanged
in tha datagridview there are five columns as
1 -Product ID 2- Product Name 3-Description 4-Price and the fifth one is
select-country which is comboboxcolumn
...
1
vote
0answers
7 views
Automatically detect when storing an object with ServiceStack.Redis
I am looking for a way to subscribe to events like Storing a specific object type to ServiceStack.Redis.
For example I may
using (var redisClient = new RedisClient())
using (var redisMyObjects = ...
0
votes
5answers
87 views
Getting parent element in jQuery
I have tried to get the parent element's id of the clicked element. I have tried this
$(window).click(function(event) {
alert("Clicked on " + event.target.id + ". Its parent is " + ...
1
vote
5answers
657 views
Preventing select menu from opening
Possibly a silly question, but how do I prevent a select element in a form from showing its drop down menu when it's clicked on? I tried the following:
$('select').click (function (e) {
...
0
votes
1answer
22 views
Android - Function execute listener
Hey i don't know if that's the right way to do it but if it is how can i do it...
I have one abstact class with AsyncTask
public abstract class A{
A(){
new Task().execute();
}
public ...
0
votes
1answer
18 views
dispatch custom event for component doesnt have parent
i have a Group g1 that addElement MyComponent comp1 and a UIComponent c1 add child g1
and a custom Event customEvent1 means:
c1.addChild(g1.addElement(comp1))
so comp1.parent is null
this is some ...
0
votes
1answer
27 views
What javascript objects have addEventlistener in their prototype?
I know of the following:
Element.prototype.addEventListener
Window.prototype.addEventListener
Document.prototype.addEventListener
Any others?
1
vote
2answers
4k views
Catching ON_CBN_SELCHANGE and other dropdown events when extending CFileDialog
I am trying to create a custom file save dialog for XP using C++/VS2008. My dialog will have three dropdowns and an edit box. I need the contents of the dropdowns to dynamically update when selections ...
0
votes
1answer
35 views
How to model an event based architecture?
I have to build an aplication in android that is similar to Evernote, and i have to make a diagram model that shows the app's architecture. So, textualy my app works that way:
I have a MVC model that ...
0
votes
1answer
21 views
in VB 2010, how do i make one button handle multiple click events?
For example, I am making a blackjack app and cannot figure out how to make the button to function properly. I have it able to draw your third card, but I do not know how to draw the fourth and fifth ...
1
vote
3answers
758 views
Magento Redirect from Observer that always works
I am having trouble to create a working redirect in Magento from an observer.
As far as I know there are many events that got the response object with them (in the $observer object).
Another way ...
0
votes
2answers
51 views
Using Javascript/jQuery to trigger event when textarea rendered
I have a JSF page where I'm trying to tie the text in specific paragraphs to the contents of a set of textareas.
Getting the content to change when a textarea changes is dirt simple using onchange ...
0
votes
2answers
27 views
PhoneGap user defined native event
PhoneGap has pre-defined event (deviceready, pause, resume, online, etc), and developer can add listener on it.
is it possible to define my own event and fire from the native thread, then the js ...
1
vote
1answer
50 views
Fire an event in Android/AndEngine?
I have a 'trick' that I do sometimes in Java/Swing in which I create a swing component that is always invisible and have property change event listener(s) attached to it. When a variable(s) changes ...
2
votes
2answers
1k views
FullCalendar jquery json Events MySQL Problem
I've got the problem that i can't display events in my Calendar and i don't now why... the dateformat is correct... if i try it with normal events out of the json... i mean with the sample events out ...
0
votes
2answers
29 views
onTouch event on Android Games
my question is not only about onTouch events but about every method I can use to recognise a touch on certain areas of the screen.
Right now, I have a "background" image, which I use as layout that ...
0
votes
1answer
59 views
When are control events used in code?
When using the windows form app, you can create an event for example a picturebox.Click event. Inside this method all code will be ran when the butten is clicked.
Now inside another event, I can ...
0
votes
0answers
20 views
EventEmitter calls the handler even after removing it
I have two classes named say A and B both has two methods named start and done. I create instance of both the classes.
var a = new A();
var b = new B();
I bind start event on b and done event to a.
...
1
vote
0answers
25 views
Visual Studio Postbuildevent Batch
I hope someone got an idea for a little problem of mine...
I got the following Postbuild-event script in my visual-studio 2010 project:
copy "D:\Sources\Project/output\program.exe" ...
2
votes
3answers
25 views
Javascript removeEventListener not working - event listener remains
I've looked at a few ways around this, but I can't really tell, my code is:
lb = document.body;
if(lb.addEventListener){
lb.addEventListener('keyup',
function(event){
...
17
votes
3answers
438 views
Event handlers, closures and garbage collection in Javascript
I'm not running into a memory leak in my application yet, but I'm worried about possible problems in the future. I would like to know if doing something like this:
SomeClass.prototype.someMethod= ...
1
vote
0answers
19 views
RCP E4 @UIEventTopic not called
I am new to RCP Eclipse 4 and read a lot of tutorials so far. We have to do a Project work for University so I need to get in touch with it.
We are coding a really small application with ...
-2
votes
4answers
51 views
jquery define custom event [duplicate]
I'm an intermediate JS programmer and it's a world of difference from PHP (esp. when I'm not an OOP programmer even in PHP).
I am interested in defining my own events in jQuery as a possible ...
3
votes
3answers
59 views
ASP.NET Button Click Event Error
I have a Main.Master page with a button.
When in Design view I double click that button it creates a click event in Main.Master page like below;
<script runat="server">
protected void ...
0
votes
0answers
12 views
Access routing options in kernel listener
I build a kernel listener some time ago, to redirect a user to a certain language.
There are several pages, that do not have a translation and where the user should not be redirected. As i use ...
0
votes
0answers
26 views
UIButton event not called at right time
I have two uibuttons as controls for a game. I will just simplify it so it makes sense out of context
b1 = calls event on touch down, and another on either touch up inside or outside (say setting the ...
1
vote
1answer
62 views
How to dynamically create a new a Topic using Events Push plugin
To create a topic for an event I need to declare this in my conf/MyEvents.groovy file as follows:
events = {
"topicName" browser: true
}
I am wanting to use the server push for two things, ...
0
votes
0answers
14 views
How to find the event on pressing Done button of keypad in phone gap
I am new to the phone gap development and i want to find the event when done button of keypad is Pressed of text field and thanks in advance.
Thanks
Rohit Sharma
41
votes
6answers
8k views
How do you detect the clearing of a “search” HTML5 input?
In HTML5, the search input type appears with a little X on the right that will clear the textbox (at least in Chrome, maybe others). Is there a way to detect when this X is clicked in javascript or ...
0
votes
1answer
28 views
Jquery Mobile Events - Need Assistance with Panel and Collabsible Sets
I have the following code where I am trying to find out how to use the events to close the collapsible sets in the panel whenever the panel closes. I have included an example in jfFiddle at the ...
0
votes
1answer
30 views
Add change event handler for custom Container of ExtJS
I have created a View by extending Ext.container.Container and have given it an alias widget.myCustomView. Since I'm using it in different places.
The view as usual Ext form components like ...
0
votes
1answer
22 views
Why am I unable to get the alt key pressed?
I am trying to get the Alt key to set a shortcut as Shift+Alt+A orCtrl+Alt+A but when the `Shift or Ctrl key is pressed I can't determine whether an Alt key was pressed or not
.The following code ...
0
votes
1answer
460 views
How to know when a group of images are loaded from web?
I have a view that fetches between 1 and 5 images (depending on the data received from server) into a StackPanel, and today they simply pop into view whenever they are downloaded (in any random ...
0
votes
0answers
16 views
VB Net event handling with directx AudioVideoPlayback strange issue
I'm facing off a very strange problem about the event handling..
I have created a class that use DirectX.AudioVideoPlayback and sostantially is a multimedia player with the possibility to loop the ...
7
votes
3answers
5k views
c# How to get the events when the screen/display goes to power OFF or ON?
Hi I have been searching but I can't find the answer. How do I know when the screen is going off or on. Not the SystemEvents.PowerModeChanged .
I dont know how to retrieve the display/screen EVENTS
...
0
votes
0answers
12 views
How does WaitForSingleObject handle missed events?
for a multi-threaded application (two threads) I have the following use-case:
Thread A sets an event to reactivate thread B.
Thread B uses WaitForSingleObject() to wait for this event.
Thread A ...
0
votes
0answers
25 views
Why can't I bind events to the elements in a namespace?
I have the following code and I want to listen to a mouseclick event but nothing will happen in this case why?
function Obj(tag){
this.el = ...
0
votes
0answers
17 views
Event Driven Function's return value, Python, PyQt4
Here is the python code:
self.browse=QtGui.QFileDialog
self.btn=QtGui.QPushButton('browse image file')
self.btn.clicked.connect(self.openimg)
def openimg():
...




