Extjs 4.0.7 创建Form表单

来源:互联网 发布:云计算的三层架构 编辑:程序博客网 时间:2024/05/01 16:20
/** * 创建分类代码添加面板 * @returns */function createTypeCodeAddPanel(){return new Ext.form.Panel({   id:'typeCodeAdd',title:'添加分类代码',           bodyStyle:'padding:0 0 0 0 ',//表单边距           frame:true,         width : document.body.clientWidth - 300,        height:'100%',        items:[{            fieldLabel : '请输入分类代码',            id : 'typeCode',            name:'typeCode',            height:'30',            xtype : 'textfield',            emptyText : '请填写分类代码',            allowBlank : false         }], buttons : [{         text : '确定',         handler : function() {          addTypeCode();         }     }, {         text : '重置',         handler : function() {                                     }     } ]    }); }
    
后台 json 输出格式
        String code=request.getParameter("typeCode");        boolean flag=service.add(code);    if(flag){    out.print("{success: true}");    }else{    out.print("{success: false}");  }