Unplanned
Last Updated: 24 Jun 2020 11:55 by ADMIN
Rick Aberle
Created on: 24 Jun 2020 11:52
Category: Grid
Type: Bug Report
1
Using the setOptions() method in an MVVM Grid causes two read requests

Bug report

Ticket ID: 1472456

Reproduction of the problem

[Dojo]

Current behavior

Using the setOptions() method in an MVVM bound grid causes 2 read requests

Expected/desired behavior

A single request should be issued.

Workaround

programmatically remove the kendo binding from the element before calling the `setOptions()` method.

 

   grid.element[0].kendoBindingTarget = null;
   grid.setOptions(options);

 

Environment

Kendo UI version:** 2020.2.617

0 comments