I have a grid I've created using the tag helper. Hovering over the column lines does not show the resize pointer. How do I enable column resizing for the grid? I tried removing the set widths for the columns but that doesn't seem to make a difference.
<kendo-grid name="grid"> <datasource type="DataSourceTagHelperType.Ajax" server-operation="false" in-place-sort="true" page-size="10"> <transport> <read url="/admin/logs/app?handler=Read" type="Get" /> </transport> <sorts> <sort field="TimeStamp" direction="desc" /> </sorts> </datasource> <toolbar> <toolbar-button name="search"></toolbar-button> <toolbar-button name="excel"></toolbar-button> </toolbar> <sortable enabled="true" initial-direction="ascending" /> <filterable enabled="true" /> <pageable button-count="5" refresh="true" page-sizes="new int[] { 5, 10, 20 }"> </pageable> <scrollable enabled="true"/> <excel file-name="appliationlog.xls"/> <columns> <column field="TimeStamp" template="#=template(data)#" title="Time" width="120" /> <column field="UserName" title="User" width="180" /> <column field="Level" title="Level" width="60" /> <column field="RequestUri" title="URL" width="200" /> <column field="Message" title="Message" width="300" /> </columns></kendo-grid>