64 lines
2.2 KiB
JavaScript
64 lines
2.2 KiB
JavaScript
/*
|
|
Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
|
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
|
see: http://dojotoolkit.org/license for details
|
|
*/
|
|
|
|
|
|
if(!dojo._hasResource["dijit.form.Form"]){
|
|
dojo._hasResource["dijit.form.Form"]=true;
|
|
dojo.provide("dijit.form.Form");
|
|
dojo.require("dijit._Widget");
|
|
dojo.require("dijit._Templated");
|
|
dojo.require("dijit.form._FormMixin");
|
|
dojo.declare("dijit.form.Form",[dijit._Widget,dijit._Templated,dijit.form._FormMixin],{name:"",action:"",method:"",encType:"","accept-charset":"",accept:"",target:"",templateString:"<form dojoAttachPoint='containerNode' dojoAttachEvent='onreset:_onReset,onsubmit:_onSubmit' ${!nameAttrSetting}></form>",attributeMap:dojo.delegate(dijit._Widget.prototype.attributeMap,{action:"",method:"",encType:"","accept-charset":"",accept:"",target:""}),postMixInProperties:function(){
|
|
this.nameAttrSetting=this.name?("name='"+this.name+"'"):"";
|
|
this.inherited(arguments);
|
|
},execute:function(_1){
|
|
},onExecute:function(){
|
|
},_setEncTypeAttr:function(_2){
|
|
this.encType=_2;
|
|
dojo.attr(this.domNode,"encType",_2);
|
|
if(dojo.isIE){
|
|
this.domNode.encoding=_2;
|
|
}
|
|
},postCreate:function(){
|
|
if(dojo.isIE&&this.srcNodeRef&&this.srcNodeRef.attributes){
|
|
var _3=this.srcNodeRef.attributes.getNamedItem("encType");
|
|
if(_3&&!_3.specified&&(typeof _3.value=="string")){
|
|
this.set("encType",_3.value);
|
|
}
|
|
}
|
|
this.inherited(arguments);
|
|
},reset:function(e){
|
|
var _4={returnValue:true,preventDefault:function(){
|
|
this.returnValue=false;
|
|
},stopPropagation:function(){
|
|
},currentTarget:e?e.target:this.domNode,target:e?e.target:this.domNode};
|
|
if(!(this.onReset(_4)===false)&&_4.returnValue){
|
|
this.inherited(arguments,[]);
|
|
}
|
|
},onReset:function(e){
|
|
return true;
|
|
},_onReset:function(e){
|
|
this.reset(e);
|
|
dojo.stopEvent(e);
|
|
return false;
|
|
},_onSubmit:function(e){
|
|
var fp=dijit.form.Form.prototype;
|
|
if(this.execute!=fp.execute||this.onExecute!=fp.onExecute){
|
|
dojo.deprecated("dijit.form.Form:execute()/onExecute() are deprecated. Use onSubmit() instead.","","2.0");
|
|
this.onExecute();
|
|
this.execute(this.getValues());
|
|
}
|
|
if(this.onSubmit(e)===false){
|
|
dojo.stopEvent(e);
|
|
}
|
|
},onSubmit:function(e){
|
|
return this.isValid();
|
|
},submit:function(){
|
|
if(!(this.onSubmit()===false)){
|
|
this.containerNode.submit();
|
|
}
|
|
}});
|
|
}
|