我想使用sap.m.Input
将小数最多限制为3。
我正在尝试这个,但它似乎是一个字符串。
value = "{ path: 'config>TenantInc', type: 'sap.ui.model.type.Float', formatOptions: { maxFractionDigits: 3 } }"
答案 0 :(得分:0)
我使用格式化程序的方法
value = "{ path: 'config>TenantInc', formatter: 'formatterPath.decimal'}"
下面的格式化程序功能
decimal : function(d){
return parseFloat(d).toFixed(2);// if value is string
// if number use below statement
// return d.toFixed(2)
}