This is a migrated thread and some comments may be shown as answers.

JQuery Grid not firing dataBound event

1 Answer 320 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Eugenio
Top achievements
Rank 1
Eugenio asked on 17 Sep 2020, 04:10 PM

Hi, I browsed across several similar questions without finding what am I doing wrong:

 

In Kendo JQuery Grid, I'm not being able to get dataBound event work even in this trivial example(attached). However, the dataBinding event is being fired as expected. What's wrong?
(Can't find any meaningful difference compared with the Telerik grid event demo. https://demos.telerik.com/kendo-ui/grid/events)
Any hint will be greatly appreciated.

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Ivan Danchev
Telerik team
answered on 21 Sep 2020, 11:49 AM

Hi Eugenio,

The problem is the dataBound configuration option is set with lower case "b":

databound: function (e) {
  console.log("dataBound");  //Not firing
},

It should be set with upper case "B":

dataBound: function (e) {
  console.log("dataBound"); 
},

Regards,
Ivan Danchev
Progress Telerik

Five days of Blazor, Angular, React, and Xamarin experts live-coding on twitch.tv/CodeItLive, special prizes, and more, for FREE?! Register now for DevReach 2.0(20).

Tags
Grid
Asked by
Eugenio
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or