我想确定当前所选列中使用的是哪个Slick编辑器。反正有吗?
答案 0 :(得分:0)
好的,我知道了。
我们可以将activeCell与列一起使用来获取当前的选择列。然后从column.editor属性中,我们比较当前选择的单元格所拥有的编辑器。
var column = columns[activeCell];
if(column.editor && column.editor === Slick.Editors.Text)
{
// Code with identification.
}