要解决Ag-grid Angular中的自定义标题未检测到触摸的问题,可以按照以下步骤进行操作:
import { AgGridModule } from 'ag-grid-angular';
import { AgGridModule } from 'ag-grid';
suppressTouch
属性。将该属性设置为false,以启用对触摸事件的检测。gridOptions: GridOptions = {
// other gridOptions configurations
suppressTouch: false
};
在自定义标题组件的代码文件中,添加相应的处理函数。
onTouchStart(event: TouchEvent) {
// handle touch event
}
通过以上步骤,您应该能够解决Ag-grid Angular中自定义标题未检测到触摸的问题。