在 Ag-Grid 中,可以通过监听 'cellClicked' 事件来获取单元格的值。下面是一个示例代码:
var gridOptions = {
// ... some other properties
onCellClicked: function(event) {
var colId = event.column.colId;
var rowId = event.data.id;
var value = event.value;
console.log('The value of cell [' + colId + ', ' + rowId + '] is: ' + value);
}
};
// ... initialize Ag-Grid and set the gridOptions
以上代码中,当单元格被点击时,会触发 onCellClicked 事件。其中 event 对象包含了列信息、行信息和单元格值等属性,可以通过这些属性来获取单元格的值。
注意,在 Ag-Grid 中,需要先设置 gridOptions 对象,然后才能将其传给 Ag-Grid 初始化函数。
上一篇:ag-grid:rowData的数据变化不会触发单元格组件内的ngIf
下一篇:Ag-grid:UncaughtTypeError:Failedtoexecute'appendChild'on'Node':parameter1isnotoftype'Node'