[progress Communities] [progress Openedge Abl] Forum Post: Re: [v 4.0.4] - Kendo Grid Event...

  • Thread starter Thread starter Vimalkumar Selvaraj
  • Start date Start date
Status
Not open for further replies.
V

Vimalkumar Selvaraj

Guest
Hi Iram, Sorry for delayed response. I am glad you made it work. But to be clear when "rb.newui.util.customEvents.rbs_viewSelectorChange" event is fired after Kendo Grid initialization . We do dataSource.read() after grid initialization is done so when you listen for view change event dataBound would have been fired already that's why you couldn't get hold of it. But if you have more than one pages of records in your list, when you switch between pages you will get call back to dataBound handler. So ideally you miss first dataBound event when you listen for view change event. So your grid.dataSource.read() would make one more data fetch call for current page and you get a callback to your dataBound event. That's how it worked for you. One more suggestion I would like to add , you can use our client side SDK to get kendoGrid instance as suggested in my code on my previous post for compatibility purpose. We recommend customer to use our API instead of using jQuery selector as this may get change in future releases. Thanks, Vimal.

Continue reading...
 
Status
Not open for further replies.
Back
Top