ui5 ComboBox 怎么模拟input
时间: 2023-02-08 10:33:59 浏览: 143
ComboBox控件模拟.rar
3星 · 编辑精心推荐
UI5 ComboBox可以通过设置它的属性"editable"为true来模拟input。另外,还需要设置"enabled"属性为true,才能让用户编辑。示例代码如下:
```
<ComboBox
editable="true"
enabled="true"
items="{/items}"
selectedKey="{/selectedKey}" />
```
阅读全文