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
sample
<p>Change browser window size in order to fire resize event.</p>
<table id="grid"></table>
<script>
var grid = $('#grid').grid({
dataSource: '/Players/Get',
responsive: true,
resizeCheckInterval: 2000, //check if the grid is resized on each 2 second
columns: [ { field: 'ID', width: 56 }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
});
grid.on('resize', function () {
alert('resize is fired.');
});
</script>