Hi Guys,
I have just noticed an issue with the Scheduler component whereby the dataBound event is constantly being fired during resize events.
To illustrate the problem run the following dojo
https://dojo.telerik.com/uCaQOcEX
and then resize the browser window and you will see multiple 'dataBound' messages hitting the console.log
Running a similar test with the Grid component for comparison
https://dojo.telerik.com/ifoHEDUd
does not cause these multiple dataBound events on resize.
Therefore I suspect this is not the expect behaviour of the Scheduler component but a bug within the code.
Please advise.
Regards
Alan
resize: function(force) {...}
Which then calls
refresh: function(e) {...}
Within this function we have calls to
this.trigger("dataBinding")
view.render(this._data);
this.trigger("dataBound");
These three calls just seem unnecessary when all you have done is resized the browser window and haven't changed any of the data.