If I set the modifyColWidth in my hadsontable and type a lot of words to make the width over 300,
modifyColWidth: function (width, col) { if (width > 300) { return 300 } }
How can I show the whole text in that cell directly without click it?
Can it use scroll or wrap?
Thanks.