In my ag-grid, I have input columns that should only accept values of the number type.
ngOnInit(): void {
this.columnDefs = [
{
headerName: 'Header', field: 'quantity',
cellRendererParams: params => {
return {
inputType: 'number'
};
}
}
];
While the above approach works as expected, it adds 2 arrow buttons (up and down) to the cell that can increase or decrease the current value by one.
I am struggling to find a way to remove these buttons as there is no clear reference to them.
Is there an alternative method, or how can these buttons be eliminated?