日期:2014-05-16 浏览次数:20534 次
{ name: "b_types", xtype: "combo", fieldLabel: "网点类型", hiddenName: "type", readOnly: true, mode: "local", displayField: "show", valueField: "value", triggerAction: "all", value: "0", store: new Ext.data.SimpleStore({ fields: ["show", "value"], data: [["全功能型", "0"],["销售服务型", "1"],["交易型","2"]] }) },{ xtype: "datefield", name:"b_openningTime", fieldLabel: "开业时间", allowBlank:false, blankText: "开业时间不允许为空" }, new Ext.form.ComboBox({ name: "b_parents", xtype: "combo", fieldLabel: "上级网点", hiddenName: "parentBranch", readOnly: true, mode: "local", displayField: "show", valueField: "value", triggerAction: "all", value: "0", store: new Ext.data.SimpleStore({ fields: ["show", "value"], data: [["x", "0"], ["xxx", "1"],["xxx", "2"]] }) }),