I'm trying to implement the min-width functionality for grid columns in an Angular project. Ideally, it should visually stop the resize when the minWidth limit is reached, but I would also settle for "snapping back" after the user releases the handle.
I found two possible solutions here on the forum: either modify the DOM directly (which is a decidedly "anti-Angular" solution), or update the columns via setOptions (which causes a complete redraw for the grid). The setOptions solution is a definite no, whereas DOM modification seems hacky at best.
What would be a recommended way to achieve this? Is such an option scheduled for near-future releases?
Thank you.
I found two possible solutions here on the forum: either modify the DOM directly (which is a decidedly "anti-Angular" solution), or update the columns via setOptions (which causes a complete redraw for the grid). The setOptions solution is a definite no, whereas DOM modification seems hacky at best.
What would be a recommended way to achieve this? Is such an option scheduled for near-future releases?
Thank you.