-3
當我輸入0到我的ExtJS輸入字段(即數字字段)當我保存表格時,我在到數據庫的路上得到空值。我有什麼特殊的設置,我需要啓用0爲0對待,而不是像null?我輸入0但ExtJS將空值保存到數據庫
這裏是我的字段代碼:
{
xtype: 'numberfield',
itemId: 'testField',
id: 'testField',
fieldLabel: "testField",
fieldStyle: 'text-align: right;',
labelWidth: 320,
labelAlign: 'right',
decimalPrecision: Ext.util.Format.currencyPrecision,
allowBlank: true,
allowDecimals: true,
minValue: 0,
maxValue: 999.9999,
defaultValue: null,
allowNull: true,
hideTrigger: true,
keyNavEnabled: false,
mouseWheelEnabled: false
},
你的領域的名稱在哪裏?然後打開chrome Web控制檯查看發送到服務器的數據,並讓我們知道。 – abeyaz