spreadJS autocomplete的联动需求
我参考了这个demo https://demo.grapecity.com.cn/Sp ... /demos/autoComplete,实现了使用autocomplete,user输入一些内容后可以自动跳出需要的内容,然后进行选择,
我在里边加入了change事件,只有在里边输入内容,实现了联动的效果。
AutocompleteCellType.prototype.activateEditor = function (editorContext, cellStyle, cellRect, context) {
...
$editor.autocomplete({
minLength: 0,
source: this.availableTags,
change: function (event, ui) {
console.log("changed");
//做联动的内容
}
}).focus(function () {
$(this).autocomplete('search', $(this).val())
});
但是如果我不输入任何内容,只是像下拉框一样选择列表中一个内容,这时没有任何事件被触发,请问我可以用什么事件来进行触发被选到的内容?
|
|