Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在選択されている列で使用されている Slick エディターを特定したかったのです。とにかくこれを行うことはありますか?
わかりました。
列で activeCell を使用して、現在の選択列を取得できます。次に、column.editor 属性から、現在選択されているセルが持つエディターが何であるかをクラウド比較します。
var column = columns[activeCell]; if(column.editor && column.editor === Slick.Editors.Text) { // Code with identification. }