How do you disable row height resizing (blazor wasm app)?
Hello, Brent!
Thank you for your question.
Kindly note that it is possible to set pointer-events: none
for rows resizing handlers using the corresponding CSS selector:
.fm-rows-resize div.fm-handle{
pointer-events: none !important;
}
The JSFiddle for reference: https://jsfiddle.net/flexmonster/qrtbxad6/.
Hope it helps.
Kind regards,
Solomiia
That works. Thank you Solomiia!
Hello, Brent!
Thank you for your feedback.
We are glad to hear the suggested approach works well for you.
Feel free to reach out if any other questions arise.
Kind regards,
Solomiia