-
Notifications
You must be signed in to change notification settings - Fork 0
qfFunctions
If different Javascript functionality is required for a certain form module, this function will allow for an extension of every object created of the "className". For example, if the dom/form/checkbox summary method does not suit your needs, it can be extended like so:
quickforms.extendClass('checkboxElement',function(checkObject){
checkObject.summary = function(){
return 'New Summary '+this.value;
}
});
Used when parsing JSON throws an exception
Interface to the document.cookie variable. Allows for simple retrieval of cookies by name. This is used extensively for authentication.
Used to retrieve URL parameters. For example, if the URL has the following form "quickforms.com?id=1032&moreVariables=example", both variables can be retrieved like so:
var id = getParameterByName('id');
var moreVariables = getParameterByName('moreVariables');
-
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)