当输入数字> 1000时,此simple form会清除输入字段。我试图添加formatOptions但它没有任何区别。
这是代码的相关部分。
<Input
description="Quantity"
placeholder="Float"
width="100%"
type="Number"
value="{path:'/classified',
type: 'sap.ui.model.type.Float',
constraints: {minimum: 1, maximum: 1001},
formatOptions: {pattern: '#,##0.###'} }">
<layoutData>
<l:GridData span="L2 M2 S2"/>
</layoutData>
</Input>
为清楚起见,验证允许的1001也被清除。
Here是一个显示此内容的jsbin。
非常感谢任何帮助。
答案 0 :(得分:0)
OpenUI5 / SapUI5团队给了我解决方案。不应使用type="Number"
。如果删除它,它可以正常工作。