-
Notifications
You must be signed in to change notification settings - Fork 0
dom
Kechushou edited this page May 19, 2015
·
2 revisions
define(function(){
quickforms.domElements = [];
quickforms.DomElement = function(dom) // Create one of these for every control
{
var me = this;
this.dom = dom;
if(dom)
{
this.name = dom.attr("name");
this.id = dom.attr("id");
if(dom.attr("remember")=="")
{
dom.on('change',function(){
setCookie(me.parent.id+me.id,$(this).val(),quickforms.rememberLength);
})
}
}
this.addedData = [];
this.onChange = function(){};
this.onBlur = function(){};
quickforms.domElements.push(this);
this.summary = function(){return this.name}
}
});
-
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)