在默认的情况下,使用numberfield控件时只会显示两位小数,有的时候需要根据业务来确定显示小数的位数。通过设置下面的属性可以达到我们想要的目的:
text : '存煤量(万吨)',
dataIndex : 'amount',
sortable : true,
align : 'center',
width : 150,
editor : {
xtype : 'numberfield',
decimalPrecision: 5,//这里设置保留5为小数
minValue : 0
}
在默认的情况下,使用numberfield控件时只会显示两位小数,有的时候需要根据业务来确定显示小数的位数。通过设置下面的属性可以达到我们想要的目的:
text : '存煤量(万吨)',
dataIndex : 'amount',
sortable : true,
align : 'center',
width : 150,
editor : {
xtype : 'numberfield',
decimalPrecision: 5,//这里设置保留5为小数
minValue : 0
}