I want slickgrid to autosize the columns based on the widest content or header text - whichever is wider. In simpler terms, I want it to simulate the default behavior of reg
I added this after the grid is drawn and it works fine.
$(window).resize(function() { var cols = grid.getColumns(); grid.setColumns(cols); })