An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object
1
vote
1answer
35 views
Handler on DOM elements in GWT
I want to add the handler on the buttonelement and i have implemented it as follow. Please help me in resolving the error in this code. I do not want to add handler directly on the button widget.
...
0
votes
1answer
34 views
Addressed event subscription
In several of my projects, it is becoming apparent that I need something slightly more powerful than the standard .NET events.
Basically, I want the option of within a message pump, having callbacks ...
0
votes
1answer
24 views
How can i Load my main ViewController's view, from another viewcontroller's icon action?
I have a root ViewController class, and call the OnlineViewController's View like this:
- (void)eventTap:(UIGestureRecognizer *)gestureRecognizer {
self.evc = [[EventViewController alloc]init];
...
0
votes
1answer
24 views
jquery ui droppable fires all events on pageload
I have two droppable and two draggable elements
On doc ready all the droppable events fire.
After which when dragging an element over the droppable element no droppable events fire
The draggable ...
0
votes
0answers
23 views
Need help creating onscreen navigation buttons that maps to keyDown functions
Im working on a vertical game, but I dont have a clue about onscreen touch controls
What must I do here for virtual on-screen controls to map the buttons to the keyDown listeners? I want to add ...
0
votes
1answer
59 views
adding javascript settimeout function
I am not a coder/programmer and I found a script I would like to use and I used my wysiwyg editor to try to make it work the best I could, but it still does not work the way I want maybe someone could ...
1
vote
1answer
39 views
Threading and events
I'm really stuck here, I've read a lot on threading on android but I'm unable to find an answer that suits my proyect.
I've got a frontend (Manages GUI) and a backend (Manages the data and stuff). I ...
0
votes
0answers
17 views
Chrome is firing mouseout events even though HTMLElement was removed
I have noticed a problem that only happens in Chrome. If you are listening to mouseout events on an element (such as to add a hover effect on something), and some action on the element causes the ...
1
vote
2answers
58 views
Setting event handlers to DOM objects
I was looking for the most proper way to attach DOM events avoiding browser compatibility issues and found that the Mozilla developers site states:
The old way is to just assign it like this:
...
1
vote
1answer
32 views
Create Event in WPF
I want to rise an event to zoom in and zoom out the image once the gesture is recognized that it is valid (gesture recognized by Kinect). my image is shown in different user control loaded in a frame ...
0
votes
1answer
33 views
Trigger event on descendants/iframe [closed]
I have a vimeo player embedded into a site. It is inside a slideshow. When the user clicks the video to play it, I want the slideshow to stop. This is what I've tried so far:
$('.vimeo_player ...
4
votes
3answers
72 views
How do event listeners recognize specific events in each of their methods?
What I'm having trouble understanding is how exactly a method such as
public interface MouseListener extends EventListener {
public void mouseClicked(MouseEvent e) {
//code ...
2
votes
1answer
47 views
Misalignment of tile in puzzle game HTML5
I am required to develop a sliding puzzle game in HTML5 using div tags and document object model. I have managed to get a working version but I'm having misalignment of tiles issues.
Please have a ...
0
votes
3answers
50 views
Communication between GUI Java
I have three classes where i create objects that are JPanels ie MyObject extends JPanel. I call all three panels in a main method call.
MyObject1 mo1 = new MyObject1(); // contains a textfield and a ...
0
votes
2answers
32 views
Suspend .Net Event Listener during Update
I have a UserControl in which I've put a dropdown ComboBox and a DataGridView.
The ComboBox is a Filter containing items depending of the data in my DataGridView. The objects in the DataGridView ...
0
votes
0answers
27 views
C# two functions called on one keyevent, ok but the first wait for the second to finish
my first function fill a listbox with a string from a textbox, the second upload a file with ftp protocol.
The two functions are called when i press the key Return and it works fine...but listbox is ...
1
vote
1answer
41 views
How to generate a key hold & press event in Python on Windows
I am trying to make a program so that when I press a button on my gamepad and hold it, a certain character will be written and repeated as long as I hold the button, just as a keyboard works.
Until ...
-2
votes
1answer
43 views
How can I know when a new div is loading into my webapp
I am developing a webpage with different divs which are located in different files.
I have my index.html with several links. Every link is placing a different div from a file into the body of the main ...
1
vote
1answer
20 views
Ext.data.DataProxy load event extjs4
I trying to update code from extjs2 to extjs4. But I have a some problem with load event in Ext.data.DataProxy.
Ext.define('App.data.DwrProxy', {
extend: 'Ext.data.DataProxy',
...
0
votes
1answer
45 views
How to disable delay to detect single/double tap on List component to improve performance in Sencha Touch 2.2
I am using a list component and there seems to be a very noticeable delay when tapping a list item to open the next view. My understanding is that it is waiting to detect whether the tap is a single ...
1
vote
1answer
31 views
Photoswipe: fire events in iframe with photoswipe
In a website, I´ve an iframe which contains a photoswipe application which is fullscreen on startup. Now, the photoswipe slideshow should be controlled from outside the iframe.
I have this code in the ...
0
votes
1answer
14 views
Making a symbol appear in Flash using AS 3
I would like to create a button in Flash CS6 that makes another symbol appear when clicked. Nothing fancy, just this. How would I do that? This is the code I've got so far:
stop();
...
0
votes
3answers
86 views
Event versioning in CQRS
We are at a point in our development cycle (asp.net mvc applciation), where we need to introduce changes to our existing commands and events (say adding/removing a few properties etc).
I have been ...
0
votes
1answer
29 views
Ajax $.post method for load project tasks in fullcalendar
Good morning,
I'd like to add a fullcalendar to my mvc project.
The problem arrives when I try to encode the json with the project tasks. The code that I use is the following:
proyectosModel.php
...
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
1answer
31 views
Prevent windows from opening
Hi would like to ask a strange question. Its about testing a WPF application.
My current object under test is a WF application that spontaneously opens informational dialogs. Those dialogs are modal ...
1
vote
1answer
30 views
Is it possible to textchanged event to occur only when textBox is focused?
I have method like this.
public void CheckEmployee()
{
ConnectionStringSettings myConnectionString = ...
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
0answers
35 views
How to handle an input text “paste” event with Backbone
I'm trying to send data to the server via Backbone if the users writes or paste a string inside an input text element.
in the Backbone events I thought something like this but it doesn't work:
...
0
votes
0answers
12 views
Lightweight crossplatform library/libraries for threading, mutual exclusion, events & delegation?
I've found Boost and QT to provide cross-platform solutions to threading, events and mutual exclusion, but both these libraries are bloated and programmers don't like using them.
Besides, QT has a ...
0
votes
3answers
44 views
Threads, Events and databases
Ok so I am not very familiar with databases so there may be a simple solution that I am not aware of.
I have a SQL database that is to be managed by a class in my c# application. What I want the ...
0
votes
1answer
76 views
prevent duplicate record being enter in DataGridView
Process is as follow
Entering record from textboxs to datagridview and then to database
when enter data into textbox and fire the click event of Enter the data into datagridview button
constraint ...
0
votes
2answers
48 views
C++ Sorting Custom Objects in a list
I am having trouble sorting a list of custom class pointers. The class I need to sort are events. These get assigned a random time and I need to do them in the right order.
#include <list>
...
0
votes
2answers
23 views
C# tick event, direct use
I want to do some code every tick.
timer.Tick += new EventHandler(TabPage tab = new TabPage(Convert.ToString("test"));)
But this is wrong, i dont remember how do this correctly.
I do not want to ...
0
votes
1answer
45 views
Jquery mulitple buttons with same name triggers event for multiple classes with same name
I'm having some problems firing an event.
I have this button called: .read-more and it says.. when clicked .read-more--> .audio h1 do this event and .sc-player do this event. That works..
but now all ...
0
votes
1answer
51 views
Ask if event has listener in jQuery
A function triggers an event and passes on some data which then will possibly be processed by a listener. If not, the function wants to process the data by herself. Well, as I don't know if the ...
0
votes
0answers
23 views
JS Leaflet: Passing touch/drag events to underlying marker
I am using Leaflet with the Label plugin (https://github.com/Leaflet/Leaflet.label). It works nice expect for the fact that when a label moves above a marker the marker is not clickable/draggable ...
0
votes
0answers
23 views
is there anyway to set can_invite_friends to FALSE in facebook event?
Hi trying to set the can_invite_friends field to FALSE programmatically is this possible or is it a read only field that can be only set on the facebook event page it self ?
Tried passing ...
2
votes
3answers
71 views
Javascript “this” overridden by event listener [duplicate]
I am probably doing something wrong but I found some interesting behavior when trying to apply some object oriented programming to Javascript. Consider the following
function Bug(element) {
...
0
votes
0answers
22 views
Subscribe event for Follow button?
I have read: edge.create - fired when the user likes something (fb:like).
But what's fired when the user follow someone (fb:follow)?
Thanks
0
votes
3answers
51 views
C# Using a Timer to Affect Instances While Accepting User Input
I am trying to learn c# by making a tetris console application. I have a gameBoard class ("gb" in the code) and a block class ("bl" in the code.) The code below is what I have so far to move a block ...
0
votes
1answer
21 views
How to handle an event trough multiple subview-levels in BackboneJS
Is there a handy way to throw/catch (custom) events from/to multiple levels of child/parent views in Backbone?
Let me explain my situation. I'm catching "keydown" events and check if some ...
0
votes
1answer
52 views
WPF attach code behind handler for every mouse up/move event
I have my view build up with a TreeListView and its content is generated by a datatemplate.
I now need to handle all the mousemove/mouseup events in my view on whatever visual element they may be ...
1
vote
3answers
44 views
How to generate callback (event) from library to application in c#
I'm developing one library (DLL), in which I need to provide event (interrupt) to user as one method with data. Library's work is start listing on socket, receive data from socket and pass this data ...
0
votes
2answers
29 views
Advanced Python Scheduler (apscheduler) Stagger events that fire within the same second?
I've been coding the python "apscheduler" package (Advanced Python Scheduler | http://pypi.python.org/pypi/APScheduler/) into my app, so far it's going good, I'm able to do almost everything that I ...
1
vote
1answer
27 views
google maps click handler firing on page load
I'm building a Google Maps app, and have an image of a compass outside of the map. Each of the compass points is on an image map, and has its own id. I want the 45° orientation to change, depending on ...
-1
votes
0answers
24 views
error in code for adding event to calendar [closed]
Can anyone explain what the problem is with this code? I have taken it from an example for adding an event to the calendar but am having a syntax error.
Please see below:
package ...
-1
votes
1answer
12 views
Facebook event after converting from profile to page
We recently converted a Facebook profile to a local business page, now the old profile had one event on it that we were set up as the host for. The event is still there but we can no longer share it ...
4
votes
2answers
45 views
Implement a listener for a Class instead of an instance
I have a lot of instances of class MyClass and they ALL have to react to some generated event from another class MyEventClass. How should I do this?
My first thought was to define a listener in ...
0
votes
2answers
29 views
Check if a MouseListener is added
In a game that I'm making I have different power ups, some that last for a certain amount of time and some that last until you've used it up. I have a MouseListener that handels the shooting and I ...


