如何在ag-grid javascript中获取selectionChanged
事件?我的意思是当用户在checkbox
中检查ag-grid
时我需要执行一些操作,所以我需要在jquery中获取一个事件。
答案 0 :(得分:0)
定义用户更改选择时需要执行的操作的功能:
function doSomething (eventData){
console.log("user changed the selection range!")
console.log(eventData)
}
然后将此函数传递给gridOptions:
var gridOptions = {
...
selecitonChanged: doSomething,
...
}