I have a slickgrid with few columns in it. I can not manipulate(increase or decrease) the width of any column by dragging it through resizer icon provided by grid itself at the end of every column. The icon shows up when we take cursor to the end of column header but when try to drag it left or right, it doesn't manipulate column width.
This is how my column definition looks like:
{ id: 'record_type', field: 'record_type', name: 'Record Type', toolTip: 'Record Type', sortable: true, filterable: true, minWidth: 150 }
Am I missing something or is there any specific flag I need to provide in my grid options to make it work? How can I achieve this functionality?