我已经建立了一个网格,代码如下:
colModel: [
{ name: 'price',
label: 'price',
index: 'price',
jsonmap: 'price',
formatter: 'number',
formatoptions: {decimalSeparator:",", thousandsSeparator: ".", decimalPlaces: 2, defaultValue: '0,00'},
editable: true
}
]
字段的格式在网格上是正确的,例如:10,32,但为编辑字段而创建的表单用 10.32 而不是 10,32 填充一个。
有人知道为什么会这样吗?我是否还需要将属性用作edittype 和editoptions(这个使用formmater 和formatoptions)?如果是,我需要如何设置这些属性?