column.minWidth : numberDefault: 250

The minimum width of the column. The column is getting invisible when there is not enough space in the grid for this minimum width. This setting is working only when the responsive setting is set to true and the column priority setting is set.

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: '/Players/Get',
         responsive: true,
         columns: [
             { field: 'Name' },
             { field: 'PlaceOfBirth', minWidth: 240, priority: 1 },
             { field: 'DateOfBirth', minWidth: 260, priority: 2, type: 'date' }
         ]
     });
 </script>