An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object
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 != ...
0
votes
2answers
143 views
hang on an handler to an event handler in View
i want to add an event to my Event handler. The Problem is my EventHandler is in my ViewModel and my Event is in View. How can I access my ViewModel from View to hang on this event?
thanks for your ...
2
votes
0answers
34 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
2answers
2k views
How to get datetimepicker c# winform checked/unchecked event
There is a check box in the datetimepicker control of winforms .net.
But I could not find the event that is triggered when the check box is checked or unchecked .
Is there a way out?
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) ...
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
39 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 ...
-1
votes
1answer
230 views
What process/library on Android is responsible for dispatching touch events to applications?
What process/library on Android is responsible for dispatching touch events to applications?
I was so focused on the hooking that I completely forgot that Android source is available.
...
0
votes
0answers
26 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 ...
0
votes
3answers
85 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 ...
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 ...
0
votes
0answers
43 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 ...
107
votes
4answers
52k views
Custom events in jQuery?
I'm looking for some input on how to implement custom eventhandling in jquery the best way. I know how to hook up events from the dom elements like 'click' etc, but I'm building a tiny javascript ...
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 ...
13
votes
4answers
9k views
android EditText delete(backspace) key event
how can I detect delete(backspace) key event for a editText? I've tried using TextWatcher, but when the editText is empty, when I press delete key, nothing happens. I want to detect delete key press ...
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
44 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 ...
2
votes
6answers
3k views
Javascript Event for Select element Selection
I'm looking to find the Javascript Event I need to put into jQuery's .bind function in order to have the function triggered when a selection is made from a <select> element.
At the moment I'm ...
3
votes
3answers
60 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
4answers
69 views
Callback function and best practice
UPDATE: I phrased the question wrong. Both the inner and outer Latitude/Longitude members need to update each other resulting in recursion. The outer members get updated by a database context while ...
0
votes
1answer
56 views
Skip validation with controlbox[X] of winform? [duplicate]
I have a validating event
private void EmployeeIDtextBox_Validating(object sender, CancelEventArgs e)
{
if (EmployeeIDtextBox.Text == "")
{
MessageBox.Show("Please Enter EmployeeID.", ...
0
votes
0answers
13 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. ...
8
votes
2answers
50 views
jQuery Trigger event but still have event.isTrigger false
jQuery provides a isTrigger property which allows us to know if the event was a "real event" or was it only "triggered".
$(ele).on("click", function(e){
if(e.isTrigger){
// this event was ...
-1
votes
1answer
57 views
onCheckedChanged
Why onChekedChanged event is firing when activity with this adapter started? How to avoid this?
class ScheduleAdapter extends BaseAdapter {
SPMMainActivity context;
LayoutInflater ...
32
votes
9answers
91k views
Browser window close event
I want to capture the browser window/tab close event.
I have tried the following with jQuery:
jQuery(window).bind(
"beforeunload",
function() {
return confirm("Do you really want ...
2
votes
1answer
910 views
WPF - How to detect when new Visual child elements are added?
Based on some custom security settings, I alter window child controls to readonly and disabled. To accomplish this, I loop through child controls when the window loads.
This works just fine. 99% ...
1
vote
1answer
141 views
WPF - PreviewMouseLeftButtonDown finding the visual owning control of e.OriginalSource
Very simple question.
I have attached to the PreviewMouseLeftButtonDown event. I know this event Tunnels so the first item in the visual tree is going to get flagged as the e.OriginalSource.
...
11
votes
3answers
3k views
Listen to changes of dependency property
Is there any way to listen to changes of a DependencyProperty? I want to be notified and perform some actions when the value changes but I cannot use binding. It is a DependencyProperty of another ...
4
votes
5answers
142 views
What does this line of C# code actually do?
I'm trying to understand what a block of code in an application does but I've come across a bit of C# I just don't understand.
In the code below, what does the code after the "controller.Progress +=" ...
4
votes
3answers
308 views
Serialization of a class with events
I have a Class like this:
public delegate void ChangedEventHandler(object sender, EventArgs e);
[Serializable]
public class valueDouble
{
public event ChangedEventHandler Changed;
public ...
0
votes
1answer
23 views
triggeredAutocomplete search event
i've a problem with triggeredAutocomplete script that i've found in this page:
http://www.hawkee.com/snippet/9391/
I've written this script:
$(function() {
...
242
votes
8answers
83k views
How to find event listeners on a DOM node?
I have a page where some event listeners are attached to input boxes and select boxes.
Is there a way to find out which event listeners are observing a particular DOM node and for what event?
Events ...
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 ...
1
vote
3answers
496 views
Start and call Ruby HTTP server in the same script
I wonder how I could start a Ruby Rack application (such as Sinatra) and call it with Net::HTTP or similar in the same script. Of couse I could do something like...
require 'sinatra/base'
require ...
0
votes
0answers
16 views
omniORB how to using omniEvents
I'm working with omniORB recently to implement a bank manager, and when I want to use the omniEvents to do something about the untyped push model with the event service of omniORB, I found that it ...
2
votes
3answers
349 views
C# events, how to raise them?
I'm trying to learn raising and handling events in C#.
Here's my simple example:
/////////////// creating a new BALL object ///
ballClass ball = new ballClass();
void button1_Click(object ...
0
votes
0answers
41 views
Event wiring with mef
Can anyone help me with this problem? I'm working with the MEF framework, but I would like to communicate via events with "the module" to the plugin.
I've created a shared interface between those ...
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.
...
4
votes
2answers
161 views
Does Disqus have public events to attach to?
I need to perform some re-calculations after disqus form gets an update. A new comment, error message just to name a few. In essence any event that causes the Disqus iframe to expand vertically. ...
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 ...
1
vote
1answer
128 views
Google Maps: clickable polyline icon
I have two markers with a polyline connecting the two.
I have click events on the markers and the polyline, but i was trying to make the polyline easier to click without placing a new marker or ...
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
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
3answers
108 views
catch touch event on blackberry api5
I want to catch the touch event in OS5. I use this method protected boolean touchEvent(TouchEvent message) in ListFieldRich. But this method didn't run it. I press all keys nothing happens. Even if I ...
16
votes
2answers
75k views
Getting value of HTML Checkbox from onclick/onchange events
<input type="checkbox" onclick="function ()" onchange="function ()" />
onclick and onchange is called prior to the checkbox value (ie:state) changing and in turn meaning the the checkbox.value ...
2
votes
3answers
5k views
jqtransform form selector (onchange) problem !
I'm styling a form with Jqtransform script.
The form includes a selector which enlist some cities, when i click a one, it should update the selector below it with some locations within that city.
...
0
votes
1answer
58 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 ...
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 ...
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 ...
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 ...










