浏览 4168 次
锁定老帖子 主题:dojo validate
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-10-31
if(!dojo._hasResource["dijit.form.Textarea"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. dojo._hasResource["dijit.form.Textarea"] = true; dojo.provide("dijit.form.Textarea"); dojo.require("dijit.form._FormWidget"); dojo.require("dijit.Tooltip"); dojo.declare( "dijit.form.Textarea", dijit.form._FormWidget, { // summary: // A generic textbox field. // Serves as a base class to derive more specialized functionality in subclasses. // trim: Boolean // Removes leading and trailing whitespace if true. Default is false. trim: false, // default values for new subclass properties // required: Boolean // Can be true or false, default is false. required: false, // promptMessage: String // Hint string promptMessage: "", // invalidMessage: String // The message to display if value is invalid. invalidMessage: "", // maxlength: String // HTML INPUT tag maxlength declaration. maxlength: "999999", value:"", templateString:"<textarea dojoAttachPoint='mTextBox,focusNode' dojoAttachEvent='onfocus,onkeyup,onkeypress:_onKeyPress' autocomplete=\"off\"\n\tid='${id}' name='${name}' value='${value}' class=\"dijitTextaArea\"> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-11-02
现在已经搞定了,dojo在下载js的时候只下载dojo.js,即使使用ff跟踪也很难找到问题所在,因为其他所有用到的文件都是dojo自动去加载的,最后我使用console.debug进行跟踪,找到了父类,对它进行了修改,现在已经可以正常工作,但是还没有进行大量的实践测试。以后想修改dojo的话,可以多实用console.debug()。
|
|
返回顶楼 | |