0
votes
4answers
148 views
C# -Delegates and Callbacks
Does the term callback in the context of delegates mean ,"a delegate delegating it works to another delegate inorder to finish some task" ?
Example :(Based on my understanding,I h …
0
votes
1answer
11 views
UpdatePanel Javascript Callback
I came across this issue recently and thought it was really helpful. My question was, how would you call a piece of javascript after an updatepanel loads via AJAX in ASP.NET?
I ne …
2
votes
8answers
351 views
Does using callbacks in C++ increase coupling?
Q1. Why are callback functions used?
Q2. Are callbacks evil? Fun for those
who know, for others a nightmare.
Q3. Any alternative to callback?
2
votes
4answers
187 views
C++: static function wrapper that routes to member function?
Hi,
I've tried all sorts of design approaches to solve this problem, but I just can't seem to get it right.
I need to expose some static functions to use as callback function to a …
0
votes
2answers
27 views
How do I set a model instance as invalid after validations are run but before it’s saved?
Hi.
I have a standard active record model with an attributes that is required:
class Sample < ActiveRecord::Base
has_many :colors
before_validation :grab_colors
vali …
4
votes
3answers
112 views
How to implement a “callback” in Ruby
I'm not sure of the best idiom for C style call-backs in Ruby - or if there is something even better ( and less like C ). In C, I'd do something like:
void DoStuff( int parameter …
3
votes
2answers
57 views
play a waveform at a certain frequency in SDL callback function
I have a waveform 64 samples long. If the sampling rate is 44100 hz, how can I play(loop) this waveform so that it plays arbitrary frequencies?
frequency = samplerate / waveform d …
0
votes
1answer
264 views
Use Ajax() function in Jquery to load PART of an external page into div
I'm trying to load a DIV element from an external page into my current page using the Ajax/jQuery.ajax function. While I have successfully been able to load an entire external pag …
1
vote
2answers
49 views
how to insert into multiple tables in rails
Hi all,
i am trying to insert into multiple tables using rails..
i have a table called users and services.
when i create a user the user details should go into users and a service …
0
votes
1answer
62 views
Compiling GTK+ Application with G++ compiler.
I am writing an application in C++ with using GTK+ (not gtkmm) so I need to compile using g++ compiler. Is it possible to compile GTK+ applications with the g++ compiler? Are GTK+ …
3
votes
3answers
140 views
Cast between function pointers
Hello,
I am currently implementing a timer/callback system using Don Clugston's fastdelegates. (see http://www.codeproject.com/KB/cpp/FastDelegate.aspx)
Here is the starting code …
1
vote
2answers
43 views
Can I use a static (i.e., predetermined) callback function name when requesting JSONP with jQuery?
The jQuery documentation lists the following example of using $.getJSON to request JSONP:
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=an …
0
votes
1answer
48 views
Modifying Containable fields required in beforeFind callback?
In my CakePHP 1.2.5 app, I have a Profile model that belongsTo a User model. The User model has a username field, and when performing a find() on the Profile model, I want to alwa …
0
votes
3answers
161 views
jquery cannot use ajax response as context in IE
Hi there,
thank you for taking the time to read my question.
I have significantly rephrased my question after some new findings.
My problem is that in my ajax callback, when I s …
0
votes
5answers
64 views
How to execute a callback method instead of an anonymous method?
The following example works, but how can I change it so that instead of executing the anonymous method, it executes my existing callback method OnCreateOfferComplete()?
using Syst …
