-
Notifications
You must be signed in to change notification settings - Fork 0
putFact
Kechushou edited this page May 19, 2015
·
2 revisions
define(function(){
quickforms.putFactServer = function(data,callback){
var me = this; // caller
var serverQuery = new quickforms.ServerQuery({
method: "POST",
url: quickforms.quickformsUrl+'putFact'+quickforms.quickformsEnding,
data: data,
async:false
});
serverQuery.fakeData = '[{"id":4}]';
serverQuery.addSuccessListener(
function(data){
callback.call(me,data);
});
serverQuery.run();
quickforms.serverQueries.push(serverQuery);
return serverQuery;
};
});
-
Quickforms Basics
-
Tutorials
- Setup Tutorials
- App Development Tutorials
-
Assignments
-
Project
-
Applications
-
Quickforms Advanced
- Project With Database
- Advanced Setup
- HealthApp with Database
- Source Control
- Joining the Team
- Cordova Native Application
- Miscellaneous
- Project With Database
-
-
Form Controls
-
App Controls
-
Report Controls
-
Server Controls
-
Quickforms DAO
-
Email Notification
-
Migrating QuickForms3(Test Server) to QuickForms(Production-Server)