ag-grid中的selectionChanged事件

时间:2017-07-08 05:46:53

标签: javascript jquery ag-grid

如何在ag-grid javascript中获取selectionChanged事件?我的意思是当用户在checkbox中检查ag-grid时我需要执行一些操作,所以我需要在jquery中获取一个事件。

1 个答案:

答案 0 :(得分:0)

定义用户更改选择时需要执行的操作的功能:

function doSomething (eventData){
    console.log("user changed the selection range!")
    console.log(eventData)
}

然后将此函数传递给gridOptions:

var gridOptions = {
    ...
    selecitonChanged: doSomething,
    ...
}