解决方案 »

  1.   

    var ApplicableModelType = new Ext.form.TextField({ id: 'iApplicableModelType', name: 'ApplicableModelType', fieldLabel: '匹配条件', value: '<%=getApplicableModelTypeValue() %>', disabled: true, allowBlank: false, blankText: "不能为空", anchor: "-20" });
            var LockPower = new Ext.form.NumberField({ id: 'iLockPower', name: 'LockPower', fieldLabel: '锁模力(T)', value: '0', allowBlank: false, blankText: "不能为空", decimalPrecision: 2, allowDecimals: true, nanText: '输入有误', allowNegative: false, anchor: "-20" });
            var FitMachineG = new Ext.form.NumberField({ id: 'iFitMachineG', name: 'FitMachineG', fieldLabel: '最大射胶量(CM3)', value: '0', allowBlank: false, blankText: "不能为空", decimalPrecision: 2, allowDecimals: true, nanText: '输入有误', allowNegative: false, anchor: "-20" });
            这是自定义的三个控件,没看出哪里有不对头的