-
Notifications
You must be signed in to change notification settings - Fork 0
executeQuery
Kechushou edited this page May 19, 2015
·
2 revisions
define(['server/server'],function(){
quickforms.executeQuery = function (appName, queryLab, prms, callback) {
var me = this; // caller
var serverQuery = new quickforms.ServerQuery({
method: "GET",
url: quickforms.quickformsUrl+'executeQuery'+quickforms.quickformsEnding,
data: {app:appName,
queryLabel: queryLab,
params: prms
}
});
serverQuery.fakeData = quickforms.getFakeFactData;
serverQuery.addSuccessListener(
function(data){
callback.call(me,data);
});
serverQuery.addErrorListener(
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)