在阅读了大量关于TagBox组件的API文档之后,我仍然没有弄清楚如何自定义"OK"one_answers";Cancel"标签定位和更好的用户体验。
有什么我还没有想到的道具吗?
提前感谢!
你可以用jquery改变get按钮元素并改变标签,当内容准备好或当下拉菜单打开时,检查事件。
或
实现你自己的按钮:
$('...').dxTagBox({
items: [...],
showSelectionControls: true,
applyValueMode: 'useButtons',
dropDownOptions: {
toolbarItems: [
{
location: "center",
options: {
text: 'CUSTOM OK',
onClick: function() {
// Check documentation
// Get selected items
// Apply to the tagBox instance
},
},
shortcut: "done",
toolbar: "bottom"
}
...
]
}
});