Tagged Questions
The event-listeners tag has no wiki summary.
7
votes
4answers
2k views
how to add event listener via fluent nhibernate?
I want to add an event listener (IPreUpdateEventListener) to add NH but I can't seem to find an example when using a fluent configuration.
I want to be able to add the listener when I create the ...
3
votes
2answers
530 views
Add objects to association in OnPreInsert, OnPreUpdate
I have an event listener (for Audit Logs) which needs to append audit log entries to the association of the object:
public Company : IAuditable {
// Other stuff removed for bravety
IAuditLog ...
3
votes
4answers
357 views
Temporal data using NHibernate
Can anyone supply some tips/pointers/links on how to implement a temporal state-table with NHibernate? I.e., each entity table has *start_date* and *end_date* columns that describe the time interval ...
3
votes
3answers
312 views
Is event listener using CPU time
Maybe this is a dumb question, but do event listeners use CPU cycles like a timer, or are they inactive until the event is fired?
Is it language specific, or do all languages handle this basically ...
2
votes
2answers
94 views
Why use event listeners over function calls?
I've been studying event listeners lately and I think I've finally gotten them down. Basically, they are functions that are called on another object's method. My question is, why create an event ...
2
votes
1answer
784 views
Java JFrame Resizing
I know I can user componentResized to listen for when the user resizes a window. This isn't a very nice solution. If I do this and add a resize() method for the children components, it waits until the ...
2
votes
2answers
496 views
Does remove a DOM object (in Javascript) will cause Memory leak if it has event attached?
So, if in the javascript, I create a DOM object in the HTML page, and attach event listener to the DOM object, upon I remove the the DOM from HTML page, does the event listener still exist and causing ...
1
vote
1answer
35 views
JavaScript - How to detect the value of “useCapture” from an event object?
JavaScript - How to detect the value of useCapture from an event object?
I made a function that removes an event listener after firing once or any number of times.
This is what I have:
/*jslint ...
1
vote
1answer
94 views
eventlisteners using hibernate 4.0 with spring 3.1.0.release?
These jars are both new released and have the latest solutions for Java EE applications. But I have a problem on specifiying hibernate listeners in hibernate.cfg.xml.
Before spring 3.1.0, ...
1
vote
1answer
49 views
Is it bad practice to use the same event-listener callback for multiple Event types?
This might be more of a subjective question, but is it generally best practice to have one dedicated method per event-types that you add an event-listener?
Such as:
...
1
vote
1answer
59 views
Prototype observers attached to a class firing multiple times
Thanks in advance for your help guys.
I consider myself pretty well-versed in jQuery but as I was helping my sister with her Prototype homework, this frustrated the crap out of me. She couldn't solve ...
1
vote
2answers
118 views
Creating timer in my Rails App
I am having a rails app that basically changes replaces images at pre-decided time. Now i want to create a ruby timer that triggers an event every second and when any image time is reached, it throws ...
1
vote
1answer
172 views
Implementing Observer Pattern for my Rails App
I am currently using rails 3.0.7 and ruby 1.9.2 and making a rails App which contains a video being loaded from a database while being rendered by FlowPlayer. and a set of slides based on the video. ...
1
vote
3answers
93 views
List of methods associated with specific event listeners?
Im working on some beginner stuff in java and Im using MouseMotionListener to get input from the mouse in one of my classes. I know of the ones required already (mouseDragged, mouseMoved, etc...)
I ...
1
vote
2answers
148 views
ActionScript 3.0 - Alternative Event Listener Declarations?
I have some in-file actionscript 3.0 code. This code controls a number of elements on it's stage. These elements each have an Over, an Out, and a Click event.
I currently define these event listeners ...
1
vote
1answer
438 views
signals and slots vs. events and event listeners
Straight to the point!
How do signals/slots and event/event-listeners compare?
Are there any pros and cons?
Which one should I consider and why?
Thanks in advance!
1
vote
3answers
155 views
What is the purpose of event listeners?
What is the purpose of event listeners and how do I make use of them in a console application in Visual C#?
Under what circumstances can I substitute them for threads, and would it be a good idea to ...
1
vote
2answers
786 views
JPanel.addComponentListener does not work when the listener is a class variable
I have a public class which has the following method and instance variable:
public void setImagePanel(JPanel value) {
imagePanel = value;
if (imagePanel != null) {
//method 1 : works
...
1
vote
2answers
405 views
Dynamically adding listeners in goole maps where iframe src is set differently for each marker
Hi I've read the articles and the excellent piece on scope and closures by Robert Nyman.
However i cannot get this to work. I'm trying to assign a mouseover event to various markers and then set an ...
1
vote
1answer
1k views
How to properly configure NHibernate event listeners
I'm trying to use an event listener for the first time. All samples I've seen show how easy it is to configure, but for some reason I'm having trouble - it doesn't seem to be called. I suspect I'm ...
0
votes
2answers
63 views
iterate throught unordered list (nav)
I am working on a Mega Menu and using a unordered list to trigger a event to show the Mega Menu.
This is the HTML code for Nav Bar:
<div class="alpha omega grid_15" id="topNavLink">
<ul ...
0
votes
2answers
71 views
Unable to receive messages in 2 way client chat via Server using JAVA Sockets…(MultiThreaded)
i am having 2 client sockets..each of them having its own AWT.Frame as GUI for chatting..
On the server side i have a ServerSocket with 2 threads created for handling each of the clients..
The ...
0
votes
1answer
177 views
Sencha Touch - event listener for NestedList back button?
Sencha Touch 1.1.1 --
Is there a way to set up a listener to listen for click events on the Back button of a NestedList? I can only find examples of how to set up for clicks on the 'body' or 'el' ...
0
votes
4answers
31 views
Attach a jQuery listener to all <a> elements and grab their ids?
I need to get the id of all the <a> links so I can make an Ajax post based on what they are
$(document).ready(function(e) {
$('a').click(function(e) {
var linker = this.attr('id');
...
0
votes
0answers
102 views
ExtJS Panel Listeners?
I have ExtJS panels with layout: table and I have 5 items in them. What I am tryign to do is to show the first one, hide the rest, and whenever the mouse is hovered on any one of the items I want to ...
0
votes
2answers
48 views
How to attach a submit listener to all forms without jQuery
I need to attach a submit listener to every form in an iframe but I can't use jQuery.
What's the best way of doing this? I'd rather not use window.onload because that requires waiting until the ...
0
votes
1answer
27 views
Event that fires when a url is confirmed as valid
Alright dudes... I have a problem that is looking for an answer more specific than the seemingly obvious solution.
I have a block of code that I want to execute directly after a url is known to be ...
0
votes
0answers
316 views
Google Maps API V3 window load eventListener not working in some browsers
A strange behaviour:
The last part of the Documentation on events inside maps api says that
> If you've been reading the documentation this far, you're probably
> already familiar with one ...
0
votes
1answer
113 views
Having some trouble with Nhibernate ISaveOrUpdateEventListener
I'm just starting out a new project, and am trying to impliment a ISaveOrUpdateEventListener to set the datecreated and dateupdated fields on my entities.
I've been trying to follow a simplified ...
0
votes
0answers
78 views
Using hql update query in PreInsert Event Listener in nhibernate 3.0 causes error
I am trying to run a hql update query while inserting a new entity using linq nhibernate.
I get;
"null id in DomainModel.Entities.StorageNode entry (don't flush the Session after an exception ...
0
votes
1answer
45 views
Implementing custom sytem.diagnostics for a managed application
I am facing a difficult problem. I need to implement a custom diagnostics section just like the system.diagnostics in the app.config for a managed application. The scenario is as follows:
I have an ...
0
votes
1answer
228 views
List of Links: Using Event Listeners to Keep My HTML Structure As Simple As Possible
I've been doing the following for as long as I can remember:
<ul>
<li><a href="somewhere">Some text</a></li>
</ul>
Since it's just a list of links, nothing ...
0
votes
4answers
329 views
How do I dispatch an event from one class and listen for it in another class that isn't a child or parent of the first class?
I am making a game using AS3. I have three classes (Spaceship, UFO, and Scoreboard) which are all children of the class GameEngine.
I want to put eventListeners in Scoreboard and then send ...
0
votes
1answer
535 views
Adding listeners to individual ListPreference items
I'm trying to add individual listeners to items in a ListPreference but I just can't find the right code to do it.
For example, assume I have an app where needs the region to be set. So I have a ...
0
votes
1answer
163 views
Action Script: When binding event listeners in an automated way, only the last one from the list becomes functional..?
Here is piece of code:
protected function handleTriggers(raw:Object) : void
{
var name:String, value:String, map:Object;
map = {
'onclick': MouseEvent.CLICK,
...
0
votes
3answers
114 views
A way to pass variables (record ids) to jQuery event listeners?
Suppose I generate a list of records on my web page via PHP, and suppose each has a link beside it. And let's say that a modal window pops up when I click the link, and an edit form then shows in the ...
0
votes
1answer
217 views
Setting Global Variables in JS on Event Trigger - Google Maps API
I'm using Google Maps API v3 and need to offset markers based on the current zoom level.
I have a global variable current_zoom_level, and an event listener for zoom in/out:
...
0
votes
1answer
289 views
Event notifications between iframe and parent
I am trying to send an event to iframes which have been opened by the application based on few events which should be prior registered by iframes.
I cannot figure out how. I use jquery but I don't ...
0
votes
1answer
762 views
Android registerListener and battery life
In reviewing this post http://stackoverflow.com/questions/2317428/android-i-want-to-shake-it, the highest rated answer says you should unregister and reregister the listener for the accelerometer ...
0
votes
0answers
614 views
flash as3 document class and event listeners
I think i have this document class concept entirly wrong now, i was wondering if someone mind explaining it..
I assumed that the above class would be instantiated within the first frame on scene one ...
0
votes
2answers
2k views
How to get IFRAME to listen to same events as parent (and fire the same handlers)
I've got an HTML page (the parent) with an embedded IFRAME. The parent page has a couple of event listeners for mouse and keyboard events, as shown below (I'm using the Prototype library).
var ...