A callback is a reference to a method that is passed as an argument to another method. This could be used for example to enable a third-party library method to call a custom method upon completion of some task.

learn more… | top users | synonyms (1)

0
votes
1answer
27 views

Detecting async function calls completion in silverlight

Say,there is a requirement that a customer object is loaded from the db to a silverlight application, so that the customer details are shown in the UI. We need to detect if the user is changing any ...
0
votes
2answers
49 views

Test to see if variable is instance of jQuery.Callbacks

Anyone know of an easy way to test a variable to see if it is an object of type jQuery.Callbacks. Background: I've got some jquery widgets I've created, and they each have events managed using ...
1
vote
1answer
50 views

Why is a callback flag being cleared and/or corrupted without apparent cause?

I am writing an SD card SPI driver for a processor. I know the SPI driver is good because I also use it for an LCD and, until now, have been sending commands merrily to the card. I am having trouble ...
1
vote
1answer
43 views

scrapy: multi fields in one page and call different callbacks

In one page, I want to crawl two links, and go into each link to crawl some information, and then collect them in one item, my code is: def parse(self, response): a = ...
1
vote
2answers
88 views

understanding the node.js event queue and process.nextTick

I'm having trouble understanding exactly how process.nextTick does its thing. I thought I understood, but I can't seem to replicate how I feel this should work: var handler = function(req, res) { ...
0
votes
1answer
25 views

No POST responses from real time callbacks

Basic idea of what I'm doing. I want to grab a users' likes and print them in a CLI application (Python script that listens to GET/POST messages using the Twisted framework). I have done the OAuth ...
1
vote
2answers
79 views

Print Paypal IPN variables to the screen

This is my first post in this forum :) I am not good in english, so I apologize for my mistakes. Here is the problem - I have Paypal IPN files (code below), that sends variables to e-mail. I do not ...
1
vote
1answer
103 views

Selector function called from another class

I have a viewController Controller and a view view A. Also ViewA contains a button. Generally, we call a function in the same class to be executed when clicked on button. But I want a method in ...
0
votes
0answers
17 views

jquery plugin attaching a close callback

I have created a lightbox plugin. It does have a close (X) in the top right corner. Right now I am closing it using $("#lightbox").hide(). I am not sure if this is the rightway. Can any one please ...
0
votes
0answers
17 views

calling a jquery function to display value

I don't know how to call the jquery function handleResponse so that it will display after the user enters the variables. I need the information grabbed by handleResponse to display next to the words ...
1
vote
4answers
69 views

Python - very simple multithreading parallel URL fetching (without queue)

I spent a whole day looking for the simplest possible multithreaded URL fetcher in Python, but most scripts I found are using queues or multiprocessing or complex libraries. Finally I wrote one ...
0
votes
2answers
44 views

processing the next event in Node.js

For an application where each request may take a second or two, is it possible to only process a piece of operative code on each iteration of the event loop? For example: function foo() { ...
0
votes
0answers
15 views

Access ObjectDataProvider From Button Callback?

I have an ObjectDataProvider defined in my XAML page as follows: <ObjectDataProvider x:Key="inventoryDataProvider" ObjectType="{x:Type lvo2:Store}" ...
0
votes
2answers
33 views

How to add a callback to ths function?

Hi there I found this snippet that simulates the Typing machine effect: $.fn.teletype = function(opts){ var $this = this, defaults = { animDelay: 50 }, ...
0
votes
1answer
279 views

json response callback load store extjs

I have a JSON store that load data from a PHP script. This script call a Web Service and sometimes it get some errors and I need to capture them and show them in my app. In my script I print this line ...
0
votes
2answers
68 views

GLFW setting callback functions

What data type to use when setting a callback functions in GLFW? I try setting a function to type void but gives me a compile error. Changing it to void __stdcall gives me an RT error, but how do I ...
0
votes
0answers
46 views

Can a callback function be set on a mailto form submit?

I want to submit a mailto form and attach a callback to the form submit. This is what I'm doing: $(document).on('click', '#mail_trigger', function (e) { // client form var form = ...
0
votes
1answer
64 views

Callback from FireBreath

In my plugin, i want to start new thread and take callbacks from it: I have function myCallback() and i want to call it every 2 seconds from my thread in plugin. How can i do it? // this method ...
3
votes
1answer
95 views

C++ x86/x64 structure alignment + .NET AnyCPU C++ library usage (calls/callbacks)

As my previous question had no success ("C# AnyCPU library using x86/x64 C API - packing structures, calls and callbacks"), I will write a more concise and abstract one. THE PICTURE: The company ...
0
votes
0answers
31 views

jQuery In Place Editor, does not show changes on page, but saving to MySQL

I'm trying to use jQuery In-Place-Editor, with some success. On page I have Java Script callback: $(document).ready(function(){ $(".prognoza").editInPlace({ url: 'prognoza_update.php', bg_over: ...
3
votes
2answers
66 views

Is there a better way to do callback chaining in javascript?

I wrote a callback helper, that lets me group multiple callbacks into one function variable: function chainCallbacks() { var callbacks = arguments; return function () { for(var i = 0; ...
0
votes
2answers
52 views

How to user jquery ajax error parameter

I'm looking for a simple example and/or explanation of how to use the error parameter for .ajax. This question (jQuery ajax error function) points to this jQuery documentation ...
0
votes
2answers
51 views

when returning data to `.ajax` callback in jquery, do I have to user `echo`?

I'm a n00b learning via online tutorial. I have the following code in a "server side" test file called "response.php": <?php if (isset($_POST)) { $answer = $_POST; echo json_encode($answer); } ...
0
votes
2answers
173 views

AngularJS, JQuery and Onload Event

I am writing an application on Ruby on Rails using AngularJS for resource management (dynamic loading etc) and JQuery for effects like accordion, fade in-out etc. When I want to display my data on a ...
1
vote
1answer
47 views

Backbone: calling a success with a custom sync method

I have a custom sync method in my backbone.js app. All my models call this method, but since I override success in this method, my success methods from the individual models are no longer being ...
0
votes
0answers
35 views

javascript callback with event

I have a javascript function that binds to a div, and expands a form. Once the form is available, I want to bind a click event to the form submit. I am not great with Javascript, so I think this is ...
0
votes
1answer
48 views

ajax callback and script tags

So, I've finally figured out an ajax callback does not load the content of a page that is between script tags. I've been trying for ages how to figure out the problem (no jquery expert here). I've ...
0
votes
1answer
71 views

TimerCallback not returning value C#

I am using System.Threading.Timer to create a timer that prints a string to a serial port and then reads from another serial port every second. I am trying to do this by sending arguments to my ...
1
vote
2answers
41 views

Constructor Calls Overridable Method (delayed call)

I understand this warning in the normal case like: class Test { public Test() { hello(); } public void hello() {} } but what if we have something like: class Test { public Test() { ...
0
votes
1answer
33 views

How to handle call back url in the google checkout for multiple websites?

I have been working on google checkout integration in classic ASP, my client have various eCommerce websites and want to use single merchant account (Google Checkout) for all websites. I have set up ...
0
votes
0answers
20 views

Define individual callbacks in the extending activity for a universal action bar

I have created a class to hold an action bar which I will be using within multiple other activities. I have done this to save reproducing code. I am creating a spinner from a resource, in my ...
3
votes
2answers
52 views

Pass jQuery to .animate Callback

I've setup a simple animator method like so: Animator: function (obj, aniArgs, duration, aniEasArgs, completeFunction) { obj.stop(true, true).animate(aniArgs, { duration: duration, ...
0
votes
0answers
13 views

DRYup shared model validations on before_destroy

To prevent removal of related records, I am applying the before_destroy callbacks approach on each model I defined several related-records validation methods in a module, so that they can be shared ...
1
vote
2answers
27 views

Disable Browser onUnload on certain links?

I am working on a Web Hosting panel which has a DNS records manager. I have to use a lot of JavaScript to make it perform almost like a desktop application. I really wanted to show a Custom Dialog ...
0
votes
1answer
35 views

Dynamicly Added Input is not updating on the screen

I am new to JavaScript so bear with me here. I have this code below that checks a text input fields value, if it matches then I fire off my Custom Dialog object/function which shows a Dialog modal ...
0
votes
1answer
56 views

Python Tkinter one callback function for two buttons

I have been looking around for a long time for answers to this question but still hasn't find anything. I am creating a GUI using Tkinter, and I have two buttons that do mostly the same thing except ...
0
votes
2answers
28 views

model.save setting the url and making a call back on success

I'm trying to get this method to work: that.model.save(null, // I'm calling that.model because this is nested in another method { url: 'some url', success: function(model, response) { ...
0
votes
1answer
98 views

EmberJS View - detect if all children views have been rendered

Scenario: Collection of notes (async-loaded) is rendered Two views: NoteView that represents list of notes and NoteOnListView that represents single note I have to run some code (masonry.js) to lay ...
0
votes
2answers
41 views

Resetting a jQuery function?

I have jQuery animating a div with an embedded YouTube video in it. I have it set so that when you close the video, the div hides and the movie stops. However, if I want to get the movie back I ...
0
votes
2answers
39 views

Callback function after animating list items

I have an animation fading in (fadeIn()) List Items in an unordered list. I have that much working, but I want to call another function after the list items are all visible - I am guessing this would ...
0
votes
1answer
50 views

Error in parameter value on callback function Python + C DLL

I have a C dll that exports this function: DECLDIR int runTest (char *historyPath, unsigned int candleNumber, void (*testUpdate)(double percentageOfTestCompleted), void (*testFinished)(void), char ...
0
votes
0answers
21 views

Image for Picture callback is stretched

I writing my camera app and have one problem on Galaxy Mini 2. When i calling takePicture() it shows me the stretched image. In data that came to pictureCallback the photo is normal, but when i make ...
1
vote
0answers
60 views

WinUSB asynchrous call in .NET with PInvoke

I have programmed a microcontroller with USB and connected it a PC using WinUSB. I am able to communicate with my uC in c++ and in VB.NET using pinvoke with synchronous (blocking, overlapped = NULL) ...
-2
votes
2answers
60 views

Using Ajax to display the values of an asynchronous function

I'm building a project that uses a function called Chat.fetch(); it's an asynchronous function that pulls an array of strings from the server. It's an ajax function that for purposes of the project is ...
2
votes
2answers
197 views

There is no error message when callback function runs in codeigniter form validation

Sorry for my bad english, I'm creating a form that takes some values specifying reporting options in my codeigniter project. I want to show error messages created in my callback functions. I have 3 ...
1
vote
0answers
59 views

Undefined variable outside of PhoneGap globalization callback

I'm playing around with PhoneGap (Cordova version 2.6.0) currently and my JavaScript knowledge is unfortunately really rudimentarily. Im trying to use the globalization object of PhoneGap to get the ...
1
vote
2answers
78 views

PHP recursively turning an ArrayObject to an Associative Array

Hey guys I have a method that is supposed to call back and recursively turn an Arrayobject into an associative array, unfortunately I'm getting a fatal error PHP Fatal error: Call to undefined ...
0
votes
1answer
20 views

.animate callback in other .animate load 2 times

I want to do this: scroll to 440 from the top open #detail with animation load my id.html inside #detail made a CSS animation on this HTML content I want to do this step by step: step 2/ is ...
0
votes
1answer
137 views

Passing a variable between callback and main

I'm using ROS with C++ and after receiving data from a topic in void callback(), I need to pass this data to a variable in int main(). What I've found out so far is that I can do it using a boost ...
1
vote
1answer
34 views

Globalize.with_locale in after_commit callback does not change anything

I'm having troubles with Globalize3 gem when updating cached attribute in after_commit callback. #In My Model after_commit :write_localized_caches private def write_localized_caches ...

1 2 3 4 5 91