Kendo grid refresh (databound twice)
kendo-asp.net-mvc, kendo-grid, kendo-ui
Solution
Try to give false to autobind and try again.
http://docs.telerik.com/kendo-ui/api/web/grid#configuration-autoBind
Problem
I am having a problem while refreshing the kendo grid, for some reason, the `dataBound` event is activated twice, does someone know what could be the problem? or is this a normal behavior? ``` $("#grid").data('kendoGrid').dataSource.read(); $("#grid").data('kendoGrid').refresh(); ``` UPDATE: if i remove the refresh line, the `dataBound` happens only once ``` $("#grid").data('kendoGrid').refresh(); ```