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
0answers
10 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
13 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']);" ...
0
votes
2answers
33 views

Binding an action in an itemtemplate to an event

I have listboxitems in a list-box that are being populated dynamically from an observable collection and I'm trying to use a Interaction trigger for the 'Selected' event of the listbox item to launch ...
0
votes
1answer
11 views

How to set a timeout specifically dealing with the absence of a continue event for a node.js http.ClientRequest object

I am trying to configure a client in node.js that will send data after several seconds if a 100-continue response is not received, but was requested by the client. The snippet below does that. ...
0
votes
0answers
14 views

How do I change the privacy for events to public?

I have been trying for almoast a day now to find out how to make my event public! I am trying to find to option "Public" but i can only choose between Friends of Friends, friends of guests or closed. ...
0
votes
2answers
53 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 ...
1
vote
0answers
29 views

Mimicing event inside callback function from external of callback

Upon a given event, I wish to trigger a given action. In particular, I would like to hide an editor by performing tinymce.editors['myID'].hide();. Turns out this method is only available within the ...
0
votes
0answers
19 views

Firing a timed event on AWS server

I have a web server running on AWS which is connected to a mysql database. The database has an event that run once a day. I need to run a php script on the same schedule which checks the DB and then ...
0
votes
1answer
17 views

Event on didSelctItemAtIndexPath when this is into header - iOS

I was building a app on iOS, and in a collectionView I have a header, and needs create event "touch up inside" for this header, like i 've create in the others cells of the collectioView ...
0
votes
1answer
60 views

How to get event name in called method

I am using reflection to add an event handler to an event : var eventInfo = type.GetEvent(eventName); MethodInfo mi = GetType().GetMethod("TestMethod", BindingFlags.Instance | ...
0
votes
2answers
39 views

Global function repository

I have several Control such as ToolStripMenuItem and Button that need to have a function bound to their click event. They will either generate a new Form or add a TabPage to a current TabControl. I ...
2
votes
2answers
53 views

KeyDown before TextChanged event

I wonder if it's possible to make KeyDown event trigger before TextChanged? I have added these two events for a simple TextBox and now I want to check if Delete key was pressed. If yes, <do ...
-3
votes
0answers
11 views

FQL Event last modified time [closed]

Is there any field in event table for last_modified time, not last update ? I want to search all events that was modified by new antedees, rejections, unsures from a certain time ?
0
votes
1answer
26 views

how to remove a gallery call when i click in any other button in AS3.0?

so i have this photo gallery with 2 external classes, this code is the timeline code that calls the classes in to import the gallery and make it work. So far so good, the problem starts when i want to ...
1
vote
1answer
32 views

WPF TreeView item clicked

I am a problem with the event in WPF. Say I have a underlying data model and a tree view to present the data. The simplest thing I want to do is, when I click on one item, I would do something with ...
0
votes
0answers
30 views

waiting for event to be handled to continue executing the function that has triggered the event

i'm looking for an elegant, efficient solution to my problem : i have this webapp with many components; one main component include many additions that will grow/evolve with time this main component ...
4
votes
3answers
73 views

How can I check that a window has been closed in JavaScript?

For example, I have JavaScript like this: windowHandle = window.open('http://www.irt.org/','testWindow','height=200,width=200'); I would like to check whether the 'testWindow' is closed and run a ...
-3
votes
0answers
43 views

How can I view my friends Facebook events? [closed]

Ever since the new timeline rolled out I am no longer able to view my friends Facebook events. This was extremely helpful when trying to find something to do by browsing events my friends are ...
0
votes
3answers
31 views

How do I simulate a click event in VB Windows Forms

I just want to connect two arbitrary controls, so that if one is clicked, the other should act as though it's clicked - is this even remotely possible? it seems like it SHOULD be so easy, but the ...
2
votes
2answers
56 views

Type-safer way to implement event driven architecture?

I'm trying to implement a extendable even driven architecture in Java. Unfortunately I can't make it totally type safe. The following is what I did. First I define the event. It's an almost empty ...
0
votes
1answer
51 views

How do I get element.onclick working in Firefox?

I cant figure this out for the life of me. I've dynamically created an element and i need to add a click event to it though it needs to work in all browsers right up to ie7. var bottle = ...
0
votes
0answers
26 views

onblur replacement in case of multiple input elements

I've got a webpage with some text structure. I want the structure to be a editable in an "in place" manner. In some cases it's fairly easy (at least so far). I make onclick event that sets display: ...
-2
votes
0answers
18 views

Search and Fetch URL Using PHP [closed]

I want to create a small snippet, which will Take in Search Keywords of an event and search for the event on a specific website and retrieve its exact URL. For example, I want to give user the ...
0
votes
1answer
29 views

Ics-file with wrong timezone

My .ics-file doen't show the right time-zone in Google Cal. In iCal and on iPhone & iPad it is shown currectly. I really can't see what's wrong!The timezone has to be set Copenhagen-time :) ...
0
votes
1answer
17 views

Mac Listen for event: Copy to Pasteboard

I was reading NSPasteboard, then wanted to find.... I am trying to find the correct Notification method that listens to the copy event of data to the clipboard. Also I am trying to find file path ...
-1
votes
0answers
9 views

Where is the events tab on IOS for a fan page

Lately with all the update im not sure i like all the things facebook is updating. Most thing i hate that on fanpages, ie for businesses, restaurant etc. the events tab is gone, the photo tab seems ...
0
votes
1answer
20 views

issues listening to events with backbone

I am trying to listen for when my view's "attachmentClicked" function is called in another object. Here is the class which originally calls the event: class AttachmentView extends ...
0
votes
0answers
17 views

Jface ContentProposalAdapter not working on first typed char

I'm trying to make field-assisting for a Text widget I'm using in a SWT/JFace application. I have a ModifyListener added on the Text component, and when this is triggered by a ModifyEvent, the ...
0
votes
1answer
23 views

problems with paste event and iframe on internet explorer 7

I've got a WYSIWYG editor, based on JqueryRTE (code.google.com/p/lwrte), which uses iframe as a main object and enables a few means of formatting. Still I need to sanitize pasted text, because users ...
0
votes
0answers
16 views

Leaflet stop dragging event, start on another one.

Good day, Currently I am working on a project in Leaflet.js a mapping solution. This works great. There is an 'marker' object which you can place on the map and enable dragging for. So you can drag ...
3
votes
3answers
47 views

Is this code correct to create a new object for the parameter to an event?

I came across the following C# function: void SomeMethod(List<ISomeInterface> inputObjects) { IList<ISomeInterface> newListOfObjects = null; if (inputObjects != ...
1
vote
1answer
30 views

What event occurs immediately after a control is displayed for the first time?

I know there is UserControl.Load, which occurs before the control becomes visible for the first time. And I know there is UserControl.HandleCreated, which occurs when a handle is created for the ...
0
votes
1answer
39 views

How can I detect the back button being pressed in QWizard?

I have a QWizard and I need to perform certain actions each time a wizard page becomes visible. Currently I am doing this in the validateCurrentPage function but I have realised that it is only called ...
2
votes
0answers
36 views

Get change event of iframe content?

I have a div with an iframe which is showing embedded google map, the map can move, I want to get an event after any change in map image (any navigation) on iframe. can I get it? Thanks P.S.: I use ...
1
vote
1answer
29 views

Java: Find out which observer is listening

I am maintaining a software which I have not written. I know only a few parts of it. Now I have found a method, which fires an event. public void cleanup(){ if(entity!=null) ...
1
vote
1answer
101 views

Onvif Event Subscription in C#

I am implementing an ipCamera/encoder management system in C#. The system will manage multiple ipCameras and/or encoders from a multiple vendors. Using Onvif instead off each ipcamera or encoders sdk ...
2
votes
1answer
54 views

How to Access the controls in the caption of the gridview?

I want to put a title to my gridview ,so i do the following : <asp:GridView ID="gv_employee" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" ...
0
votes
1answer
34 views

Changing url with parameters in gwt framework

Could someone give me an example how to use celltable in case I would like to change url? I have a simple celltable - On session select I would like to change url to something like this - ...
0
votes
1answer
46 views

Combobox selected Item does not match with its selected

I faced with that issue which appears with spaces after letters finished more than Combobox.SelectedItem's length. Why? How can I fix this issue? Below is showing my issue as visual its a very short ...
2
votes
1answer
49 views

Parallel requests in Mojolicious application

I have perl application which, for example, parallel searching in google: use Mojo::UserAgent; use Mojo::IOLoop; my $ua = Mojo::UserAgent->new(); my $delay = Mojo::IOLoop->delay(sub { say ...
0
votes
0answers
27 views

Events on FullCalendar using CodeIgniter

I'm trying to use fullcalendar with code igniter and the events are not displayed. For now i have some simple code lines to test it but i cannot get them work. Here's what i have: In the developers ...
2
votes
2answers
50 views

How can I get a jQuery event to fire on a direct link to http://www.website.com/#id?

Trying to figure out how I can get jQuery to detect a hyperlink referencing a unique ID on the page. I want to load the event not only when the element is clicked on the page, but also if someone ...
1
vote
3answers
30 views

Run a function at the first keypress event on an input

I have an input element with an onkeypress event that runs a function, change(). The problem is that the function doesn't run for the very first keypress. For example, I have to type 55 instead of 5 ...
0
votes
1answer
21 views

Multiple triggers don't work on firebird

create trigger tr_buFile_fileid for BUFiles before insert as begin IF (NEW.FileID IS NULL) THEN NEW.FileID = GEN_ID(FileID_generator, 1); end create trigger tr_buFile_insert for BUFiles after insert ...
0
votes
0answers
27 views

grails 2.2.2 platform-core-plugin No signature of method event in domain model

i try out the platform-core-1.0 rc5 Plugin to services by events. Now I write a service in the grails-plugin "listadmin": package listadmin class SECO_ListenService { ...
0
votes
1answer
45 views

Adding event listener to HTML span tag

I have a shopping cart in an ecommerce and when the value of the shopping cart alters a banner appears different for each value. The js will just run and show the correct banner when the page reload ...
0
votes
0answers
47 views

FileSystemWatcher - Reduce Multiple Event Raising (or Reduce Results of Multiple Events) in Visual Basic (VS 2012 V11)

I'm trying to reduce the number of events raised to one when the FileSystemWatcher changes (or at least display text in a textbox only once when an event is raised, by either removing the duplicate ...
3
votes
3answers
62 views

Trigger click on iframe

I'm aware of the same-origin policy... just getting that out of the way. Anyway, I have a slideshow (slide.js) that has some embedded videos in it. When the user clicks the video, I want the ...
0
votes
0answers
14 views

Touchy JS Wheel Menu Event Bubble

http://hotstudio.github.io/touchy/examples/wheel-inertia.html This is a really cool spinning menu that I want to fabricate into a menu... however... I am having issues resolving the event bubble. ...

1 2 3 4 5 306