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)

2
votes
1answer
27 views

Event being triggered without any declaration

First of all, let me present to you the exception I get in the screen. The control 'Store1' does not have an DirectEvent with the name 'DataChanged' or the handler is absent I have some pages in ...
0
votes
2answers
37 views

Youtube/vimeo iframe won't play in firefox

I am embedding a youtube/vimeo video onto my site with an iframe. <iframe src="http://www.youtube.com/embed/{$entity->getYoutubeVideoID()}" ...></iframe> The ...
0
votes
0answers
15 views

Create element on mousedown and immediately be able to drag it

Im trying to create an element (a div for example) when I do on mousedown. Up to that, no problem. But what I want is to be able to drag that element while I'm with the mouse down. Any one?
0
votes
3answers
86 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
16 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
7 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
12 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
640 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
8 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
13 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
253 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
40 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
47 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
5 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
25 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 ...
0
votes
1answer
10 views

GWT - Handler for lost focus on widgets in flextable

I'm currently coding in GWT, for the first time, and it's going well so far. I'm having a problem with eventhandlers though. I have a flextable which have 2 columns, 1 for labels, and 1 for ...
1
vote
0answers
6 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
6answers
83 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
648 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
16 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
15 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
25 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
1answer
19 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 ...
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
29 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
18 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
741 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
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
24 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 ...
1
vote
0answers
22 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 ...
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
28 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
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){ ...
17
votes
3answers
433 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
18 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
10 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
59 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
7k 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
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
23 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
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 ...

1 2 3 4 5 306