我想在輸入字段中設置類型設置爲Number時的驗證並使用sapui5設置maxlength。但它不起作用。從api sap.m.Input的方法setMaxLength的如果輸入類型設置爲Number如何使用sapui5設置maxlength
var Price = new sap.m.HBox({
items:[new sap.m.Label({text:"Per Unit Price",required:true,design:"Bold",width:"110px"}),
new sap.m.Input("Price",{ width:"150px",type:"Number",
value:{
type : 'sap.ui.model.type.Integer',
constraints : {
minLength: 1,
maxLength: 15
}
}
})]
});
謝謝Jaro ...它工作。 –
不客氣。 – Jaro