随笔分类 - ExtJs
摘要:Ext.MyWindow = Ext.extend(Ext.Window, { width: 300 , height: 200 , addButtons: function () { if (!this.buttons) { this.buttons = []; } Ext.each(arguments, function (arg) { this.buttons.push(arg); }, t...
阅读全文
摘要:Ext.form.Checkbox 环境说明:Ext3.0 rc3 (当然不是代表不兼容其他版本) 常规定义:var ckbox1 = new Ext.form.Checkbox({ boxLabel: "看电影", name: "interest",inputValue: 1 });设置项: 1)boxLabel是指box右边的文字;注意与另一个设置项:FieldLabel区别,FieldLab...
阅读全文