ExtJs 3.4 numberfield发送字符串而不是null

时间:2013-06-24 08:59:42

标签: string extjs null

我有一个表单,用它来修改JsonStore的记录。 这是JsonStore的配置:

reader: new Ext.data.JsonReader({
fields: [
    'item_ref',
    'item_type_code',
    {
        name:'order_by',                
        type: 'int'            
    }]
}),[ ... ]  

我正在尝试修改order_by字段(numberfield)但是如果将其留空则会发送一个字符串“”... 我会将一个json与order_by字段对应,例如:

{
    item_ref: 16
    item_type_code: 1
    order_by:  
}

但我得到了这个:

{
    item_ref: 16
    item_type_code: 1
    order_by:  ""
}

0 个答案:

没有答案