Tagged Questions
0
votes
1answer
43 views
How to create callback (add as dynamic argument, a function)?
I'm creating this method / function and I need to implement callback. I mean, I need to add as dynamic argument, a function.
I have read several articles but I can not understand how to get it.
Any ...
0
votes
0answers
11 views
Echo Forum Post Count On Wordpress Page
I've installed mingle-forum plugin onto my wordpress blog, and I want to echo out the post count for a specific forum id on a page in my blog. Any help would be appreciated. Ive tried including this ...
0
votes
0answers
24 views
How can i assign static RtMidi callbacks object wise?
i'm using the C++ RtMidi library to read MIDI input from two identical devices (Novation launchpad).
Both launchpads 'live' in their own object, open their own MIDI port and (should) have their own ...
0
votes
0answers
27 views
How to use threading in callback functions with python
I have a class that uses the APScheduler python module to schedule jobs to be run. The callback
function that I use actually is a class method that sends and receives data from the serial port ...
0
votes
2answers
43 views
Execute private function inside the class by its name (string)
At the moment I have simple JavaScript class like this:
function MyClass() {
// ... some code ...
this.Create = function() {
funcName = 'myTestFunc()';
cTimer = setTimeout(funcName, 1000);
}
...
0
votes
0answers
49 views
jQuery & AJAX - using return value in multiple places
I'm using jQuery (and new to it) to do an AJAX call that queries a table & returns a value. The URL has in it a time parameter, and what is being returned is a Shift Number. The XML being ...
0
votes
1answer
38 views
Clarification on concept of callbacks and function pointers in c
I found this line on wikipedia about function callbacks,
"In computer programming, a callback is a reference to executable code, or a piece of executable code, that is passed as an argument to other ...
0
votes
0answers
19 views
Phonegap camera does not fire callback functions
I am using the Phonegap (2.0.0) camera API in a Sencha Touch 2 application. There is a button. On button click, the Phonegap camera API's getPicture() method is called. The application allows me to ...
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 ...
0
votes
0answers
44 views
Return value in function callback is undefined when trying to refer to it directly
I'm sure the way I worded the question was pretty awful. I need to explain what's going on.
I'm using the Jquery-file-upload package. The uploading and all that is working great, but I'm trying to ...
0
votes
1answer
61 views
javascript child function pass the return to the parent function return [duplicate]
i want to pass the return from a "child" (i don't know the correct term) function to the return in the parent function... how is the correct way to do this? check_data() isn't returning true or false
...
0
votes
1answer
33 views
__cdecl wrapping WinSock function as callback in plain C and call it
Have prepared such function, where some WSA functions will be used as callback:
int StartWinSock(int (*WSAStartup)(WORD, LPWSADATA))
{
}
But when in other code, I'm trying to launch it:
...
0
votes
3answers
41 views
start next function after success
i want to start a function after a successful ajax call. What i do now is this
function ajaxCall(url, types, next) {
$.ajax({
url: url,
type: 'POST',
beforeSend: function ...
1
vote
1answer
106 views
Matlab timer undefined function or variable
I have a question about matlab timer object. I have a button in my gui that creates a timer and every period of 0.1 i want to call my function.
function playBtn_Callback(hObject, eventdata, handles)
...
0
votes
2answers
70 views
NodeJS - how to send a variable to nested callbacks? (MongoDB find queries)
I want to use result set of a find query in another result set. I couldn't explain this situation in english very well. I will try to use some code.
People.find( { name: 'John'}, function( error, ...
0
votes
0answers
39 views
Return of the main function from the inner functions [duplicate]
Here goes my function that receives some data and has to return it or pass it down to other function, how can return data from the inner based functions?
Easy question but I just never used something ...
-1
votes
1answer
78 views
jQuery chaining functions task [closed]
I'd like to use jQuery to build a series of six buttons with values A, B, C, 1, 2, 3. Each time the user clicks a button, its value is appended to a text field. However, the user must not be able to ...
1
vote
1answer
54 views
is it possible to return an object of callback functions?
I'm trying to build a function that when called in different ways it can return an object of callbacks, It would be something like this :
var myFunc = function($scope, callback) {};
myFunc("hide", ...
1
vote
3answers
262 views
How to add third party Javascript plugin with callback function to Angular JS application
I have to add an third party Javascript plugin with callback function to an Angular JS application.
The Javascript plugin provides a function like this:
thirdPartyFunction(parameter1, parameter2, ...
0
votes
0answers
29 views
Calling back 2 times with the same argument
I came across this C# code during a code review. Somehow it seems to be odd calling back 2 times with the same argument (inside the catch).
public interface IMyExceptionHandler
{
void ...
0
votes
2answers
46 views
Javascript callbacks for two separate functions and outputting in same place
I have the following code:
displayOrders: function(){
function getRetailerName(retailerID, callback){
var retailerName;
db.transaction(function(qry){
...
0
votes
1answer
49 views
Any way to add Google's “Contribute a better translation” feature to the “TranslateThis Button”?
I'm using the TranslateThis Button to translate my site. Its essentially a plugin that uses Google Translate, but I prefer it to the standard Google Translate for its easy callback functionality:
...
0
votes
1answer
86 views
Matlab gui for selecting a text file and the utilize it in further code
I have spent a long time studying about the gui. I have made the blank template containing all the buttons and input editable text box. but am facing problem with callback functions.
I have written a ...
0
votes
3answers
141 views
User-defined callback function is being fired multiple times in Javascript/jQuery
There are some similar questions, but they all seem like regarding native jQuery callback functions.
So I have this code which (live) creates a div containting some form elements.
Values of these ...
0
votes
1answer
25 views
how to traversing with selectors in Jquery a callback data from a post-function like a document
how can i with JQuery traversing a callback data coming from a post ajax like a document
$.post(URL,function(data){
alert($(data+'> div#xy').html(););
})
1
vote
3answers
110 views
Callback function inside class [closed]
I am trying to create a window container for sfml windows. If you are not familiar with sfml, a sfml window is a class which is non-copyable so cannot be put inside a std::vector for example.
I've ...
0
votes
2answers
108 views
php callback function in class not being called
Given this line of code to callback a function and the callback function itself:
Class MyClass {
public function doThings() {
...
0
votes
1answer
89 views
Trying to get asynchronous functions with arguments and returns to work
I have been trying to get a function to work asynchronously with a GUI window, and having very limited success.
The code below is my function, XXX, with a delegate and Callback - to allow stopping ...
0
votes
3answers
50 views
jQuery callback from another function
I have a function that looks like this. It works.
Problem
This function myFunction is called by many other functions and depending on which one it should do something different on success.
Question
...
0
votes
2answers
55 views
How to improve the following callback pattern?
I have the following pattern which strings together function1, 2 and 3 through their callbacks.
Assume that function1, 2 and 3 can take up to 1 second to complete. I would like to know other "better" ...
0
votes
3answers
56 views
Call a function from a string in JS
I have an array of strings that I wish to use as callbacks, but the below code is not working.
When running the function, I'm getting the error TypeError: fn is not a function logged when ...
0
votes
1answer
80 views
Wrap function in a callback in JQuery?
I am trying to figure out how to call a animation function, and then have it execute a callback only when that function is complete. Take a look at what I have here...
...
1
vote
3answers
987 views
C++ class member callback simple examples
I know this has been asked so many times, and because of that it's difficult to dig through the cruft and find a simple example of what works.
I've got this, it's simple and it works for MyClass...
...
3
votes
2answers
346 views
Delphi callbacks?
I would like to know if it's possible to implement something like this:
procedure waitandcall(time,@MyProcedureOrFunction)
which execute the function or procedure I've created ?
I'm not sure if ...
-2
votes
5answers
210 views
Declaring a callback function in Javascript [closed]
While I was at home playing some Javascriptz and, I faced something...
I made a simple function that returns each char from a string or each position value from an array:
function each (haystack, ...
0
votes
0answers
32 views
WordPress Database Security [closed]
Recently I was working on a function to validate some data that gets saved from a custom Theme Options page. Another programmer working on the project said we shouldn't even bother validating the ...
2
votes
1answer
114 views
Passing a callback argument to cvCreateTrackbar
I have a problem with the callback argument of the function cvCreateTrackbar. Here's the error I'm getting :
C:\Users\XELTINFO\ProjetVision\moyenetmedian.cpp:28: erreur : argument of type 'void ...
1
vote
1answer
404 views
matlab GUI callback
I have this function in an m-file and I want to make a callback for push button but I have no clue how. Can anyone help me?
This is the function:
function f=fftreal(f,N,dim);
...
2
votes
2answers
145 views
Best practice for repeating callback functions?
In my code I use a lot of (named) callback functions, just to give a quick example:
function showThis(callback) {
// Do something
if (callback && typeof(callback) === 'function') {
...
0
votes
1answer
118 views
Rails - Turbolinks - Callback
I wonder if turbolinks have a callback function that you can use to call functions when turbolinks have finished rendering the page?
2
votes
2answers
107 views
Using Function.prototype.call as a callback
I tried the following in the Google Chrome console:
> function t1(f) { return f(1); }
> function t2() { return this+1; }
> t1(t2.call)
TypeError: object is not a function
Why does this not ...
2
votes
0answers
332 views
Passing C++/CLI Class Method as C function pointer
I have a third-party C library that provides this header:
//CLibrary.h
#include <Windows.h>
#include <process.h>
typedef void (WINAPI *CLibEventCallback)(int event, void *data);
...
0
votes
1answer
86 views
Error when calling a function in ASP.Net (C#) from flex side
I want to call a function at c# side from flex side. But I got an error as below.
CallBack method="handleFaultReturn" arguments="[RPC
Fault faultString="Could not find a suitable method with ...
0
votes
2answers
66 views
What is the point about callback
I learn now that a callback is function that pass to argument.
but I can do it without so what is the point?
for example
function i()
{
alert("callback");
}
function p(a)
{
for(r=0;r<100;r++)
...
0
votes
1answer
422 views
Asynchronous Script Loading Callback
http://jsfiddle.net/JamesKyle/HQDu6/
I've created a short function based on Mathias Bynens Optimization of the Google Analytics asynchronous script that goes as following:
function async(src) {
...
0
votes
2answers
45 views
adding a callback to this function
Would someone mind giving me a hand and help me out by taking a look at this function and explaining how i could add and execute a callback function after last element is finished fading in. I'm not ...
4
votes
2answers
301 views
Pass extra parameters to WebSQL callback function?
I am calling a function db.transaction with following code:
db.transaction(createSheetDB, function(){alert("Sheet creation error!")}, function(){alert("Sheet created!")});
The function ...
1
vote
2answers
68 views
Is there a way to execute code in JavaScript by only referencing it?
I stumbled upon code like this
if (options.callback)
{ options.callback; }
This can't be right, correct? Options is some object with an attribute titled 'callback', now to execute callback it ...
0
votes
1answer
83 views
Function calls with class members?
Before I present the code which is found at the bottom of this post I would like to talk about the issue and the fix's that I do not desire. Okay basically I've created a GUI from scratch sort of and ...
1
vote
1answer
470 views
pass member function from C++ CLI to native C callback
I've got problems passing a member function of a C++ CLI class to a native C callback from a library.
To be precise its the Teamspeak 3 SDK.
You can pass a non member function using the following ...



