我正在使用 ag-grid vue ^23.1.0
当我的 textcolumfilter 处于焦点时,我试图访问 onFocus
this.columnDefs = [
{ headerName: 'Label', field: 'label', cellRenderer: 'Label', filter: 'agTextColumnFilter'},
]
我曾尝试使用 isFilterActive() 访问它,但它仅在应用过滤器时调用
const instance = this.gridApi.getFilterInstance('label')
this.isActivated = instance.isFilterActive()
是否可以将引用传递给 agTextColumnFilter 以便我可以获取 textfilter 是否处于焦点