An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object

learn more… | top users | synonyms (1)

0
votes
1answer
14 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
6answers
75 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 " + ...
0
votes
1answer
23 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?
0
votes
1answer
10 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 ...
1
vote
1answer
15 views

Backbone listenTo not working

I have the following working code, and I was planning to replace object.on calls with object.listenTo calls: setField: function(field) { if (this.field) this.field.off(null, null, this); if ...
0
votes
1answer
14 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 ...
0
votes
1answer
24 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
2answers
50 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
21 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 ...
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
18 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
23 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
24 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){ ...
1
vote
0answers
15 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 ...
1
vote
0answers
20 views

WinRT Controls Over Scrollviewer Consuming Scrolling

My issue is that I have a few controls (buttons, combo-boxes, hit test visible controls, etc) that are on top of a scrollviewer. Now there is no reason for these controls to consume a pointer wheel ...
3
votes
3answers
56 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
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 ...
0
votes
0answers
11 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
0
votes
1answer
18 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
20 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
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 ...
0
votes
0answers
10 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
23 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
14 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(): ...
0
votes
0answers
17 views

how to invoke a method from an Entry Widget in Ruby Tk

I'm looking for an option or a way to bind an event, which invokes a method from an Entry-Widget. Like the command option for button-widgets: command { method } or like binding an event for ...
0
votes
0answers
29 views

Actionscript 3 Where do Events pass through and how is target obtained?

I am currently trying to understand the Event Flow of Actionscript 3, for that I am trying to implement the AS3 Event Flow in Java. I already read ...
0
votes
1answer
23 views

Lower Keyboard sensitivity in java keyhandler?

private class KeyHandler implements KeyEventDispatcher{ @Override public boolean dispatchKeyEvent(KeyEvent e) { if(e.getKeyCode() == KeyEvent.VK_RIGHT){ ...
0
votes
1answer
26 views

AngularJS: how to preventDefault() of an event after promise completes?

I have some code like this: $scope.$on("$locationChangeStart", function(event, newPath, oldPath) { // Do some sync checks if (!$scope.isPageAllowed($location.path())) { // ...
1
vote
0answers
26 views

MFC - Adding event handler for dialog button

I have a CView class and a dialog in it, and I want to get some data from the dialog object once the user clicks on its "Accept" button, so I have added an event for the button and its handler in the ...
2
votes
1answer
30 views

Swing: Delegate events to child components of transformed parent

I've got a custom component GameViewCanvas extends JPanel that will hold a number of tiles (800x800 textures). Now in GameViewCanvas I've overridden the paint() method, so that it will paint the ...
0
votes
2answers
44 views

C# events change sender state

Modify the sender's state in events (aside from being a mutable object), is this considered bad practice? All event examples I've found are very simple and only do something like ...
0
votes
1answer
16 views

Overriding parent prototype method for event handling

I am using the following code jsFiddle to work with form fields and events. I have previously asked two questions regarding this and they have helped me tremendously. Now I have a new ...
1
vote
0answers
21 views

jQuery and custom events [closed]

I have this event that gets triggered from within a frame: window.top.$(window.top.document).trigger('object-selected',['Custom', 'Event']); In the parent window, I listen like so: ...
0
votes
1answer
31 views

How to update GUI based on status

I have a JList of object "Test" that is using a custom ListCellRenderer to show the name of the test and an icon next to it. The icon represents the status of the test (Warning, Ready, Running, Done). ...
0
votes
1answer
14 views

Javascript support for touch without blocking browsers pinch support

I have a little web gallery that I added swipe navigation to for mobile browsers. I did it with pretty simple touchstart/touchmove/touchend event tracking. The problem is that when I try to pinch ...
2
votes
1answer
32 views

Event system similar to C# (.NET?)

In C# (atleast using .NET, but I think it's general), you can create events like this: Understanding events and event handlers in C# Is there a similar mechanism for C++? I've never liked ...
0
votes
0answers
5 views

.Net How to prevent DataTable returned to event subscribers from being changed by them to guard against iteration problems

I have a publisher class that needs to provide periodic data updates to 2+ subscribers. I made an event that returns a datatable with the latest copies of the data. My worry is that the same object ...
1
vote
1answer
46 views

Blur event triggered on focus

I am using the following code jsFiddle: function Field(args) { this.id = args.id; this.name = args.name ? args.name : null; this.reqType = args.reqType ? args.reqType : null; ...
0
votes
1answer
15 views

Backbone js: change event clobbering click event

I've got an order form with fields including a textarea and a 'COMMIT' button. The fields are autosaving, i.e. the moment a field's value changes, it is saved to the db. The COMMIT button changes the ...
0
votes
1answer
35 views

Why is event in firefox undefined when defining a pseudo event with MooTools?

I am trying to define a pseudo event with MooTools. It works in chromium, but not in firefox. Both browser are the newest stable version. Here is my event: DOMEvent.definePseudo('ctrl', ...
0
votes
1answer
15 views

Open hyperlink after jquery scroll event

I'm looking for a script that automatically opens a hyperlink after a jquery scroll event. This is the script I have so far: $(document).ready(function() { $("a.anchorLink").anchorAnimate() }); ...
0
votes
3answers
33 views

Event Handling in Javascript using Prototypal Inheritance

I am trying to enable Event Handling in JavaScript. This is what I have so far: function Field(args) { this.id = args.id; this.name = args.name ? args.name : null; this.reqType = ...
0
votes
3answers
22 views

EventHandler with FormClosingEventArgs - C#

I have this closing form code in my Form.cs public void label7_Click(object sender, FormClosingEventArgs e) { MessageBox.Show("Are you sure you want to exit?", "Confirmation", ...
0
votes
1answer
22 views

Kendo multiselect, trigger an event when an item is removed

I use the multiselect from the Kendo UI. I want to know if there is any way to trigger a function, when the user deletes an item from the multiselect. So far I know that the 'change' event is ...
0
votes
0answers
15 views

How come an event is raised after removal?

In my program I create GridSplitters at runtime and add an eventhandler to them, like this: // Create GridSplitter gs = new GridSplitter(); Grid.SetRowSpan(gs, tileView.RowsCount); Grid.SetColumn(gs, ...
0
votes
1answer
19 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
0answers
9 views

Threading events using greenRobot EventBus

I've just started looking at greenRobot EventBus for Android and have a question about threading. I have a long-running process that I'd like to run on a background thread which, when completed, ...
0
votes
0answers
12 views

log4j error with NTEventLogAppender on Windows 7 (64 bit)

I am running into the following errors when I use log4j's NTEventLogAppender. I already copied the NTEventLogAppender.amd64.dll and NTEventLogAppender.dll to C:\Windows, C:\Windows\System32, and ...
1
vote
0answers
9 views

Google Analytic Event tracking count fail

i faced a strange problem when i use event tracking to track a link. For example, i have a link <a href="a.html" onClick="_gaq.push(['_trackEvent', 'cool', 'Click', 'link1']);" ...

1 2 3 4 5 305