Is there a way to programmatically prevent left and right arrow key navigation in a PrimeNG Table with cell editing, without the need to modify the Table component source code? You can check out an example here: Angular Primeng Tableedit Demo code.
I managed to disable left and right arrow key navigation by commenting out the onArrowLeft(event) and onArrowRight(event) events in this script: \node_modules\primeng\fesm2015\primeng-table.js
Is there a more efficient method to block or replace left and right arrow key navigation functionality in a PrimeNG Table that utilizes cell editing through code (e.g. overriding the onArrowLeft(event) and onArrowRight(event) events)? Thank you!