ag-grid-react 访问所选列值的相应行
ag-grid-react accessing the corresponding row of a chosen column value
我正在使用 ag-grid-react,我想根据其中一列的值访问该行的所有其他列值。
这可能吗?
这应该是一个非常简单直接的方法,但奇怪的是,我在ag-grid-react documentation.There are multiple methods of api and columnApi but there is multiple methods of api and columnApi 但没有明确的link 使您能够根据其中一列的值获取相应的行!
我可能遗漏了什么,非常感谢您的帮助!
提前致谢!
我猜您希望根据特定列值过滤整行。
首先,您必须在网格选项中启用过滤,在网格选项中使用 enableFilter: true
。
接下来调用一个方法
gridOptions.api.forEachNodeAfterFilter( function(rowNode, index) {
console.log('node ' + rowNode.data.athlete + ' passes the filter');
});
这将使您能够在过滤后遍历所有节点,然后您可以使用 rowNode.columnName
访问节点上的任何列。
我正在使用 ag-grid-react,我想根据其中一列的值访问该行的所有其他列值。 这可能吗? 这应该是一个非常简单直接的方法,但奇怪的是,我在ag-grid-react documentation.There are multiple methods of api and columnApi but there is multiple methods of api and columnApi 但没有明确的link 使您能够根据其中一列的值获取相应的行!
我可能遗漏了什么,非常感谢您的帮助!
提前致谢!
我猜您希望根据特定列值过滤整行。
首先,您必须在网格选项中启用过滤,在网格选项中使用 enableFilter: true
。
接下来调用一个方法
gridOptions.api.forEachNodeAfterFilter( function(rowNode, index) {
console.log('node ' + rowNode.data.athlete + ' passes the filter');
});
这将使您能够在过滤后遍历所有节点,然后您可以使用 rowNode.columnName
访问节点上的任何列。