resizeCheckInterval : int Default: 500
The interval in milliseconds for checking if the grid is resizing. This setting is in use only if the resizeMonitoring setting is set to true.
Examples
<table id="grid"></table>
<script>
var grid = $('#grid').grid({
dataSource: '../Grid/GetPlayers',
responsive: true,
resizeCheckInterval: 2000, //check if the grid is resized on each 2 second
columns: [ { field: 'ID', width: 20 }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
grid.on('resize', function () {
alert('resize is fired.');
});
</script>