

I am at my wit's end finding a difference between the two grids. With the only difference being TerminalIndexItem versus LocationIndexItem' and andTerminalIndexModel versusLocationIndexModel, and of course the controller names in the CRUD definitions,Terminal versusLocation`. Failed prop type: Invalid prop 'modifiers' of type 'array' supplied to 'ForwardRef(Popper)', expected 'object' Material-UI: The key selectLabel provided to the classes prop is not implemented in ForwardRef(TablePagination). I am copying their examples but I keep getting these JS errors. Destroy(destroy => destroy.Action("BatchDelete", "Terminal")) I'm trying to do a basic implementation of the DataGrid from materials UI. Create(create => create.Action("BatchCreate", "Terminal")) Update(update => update.Action("BatchUpdate", "Terminal"))

Read(read => read.Action("Read", "Terminal")) Events(events => events.Error("kendoGridErrorHandler")) Reorderable(reorder => reorder.Columns(true)) Resizable(resize => resize.Columns(true))

Editable(editable => editable.Mode(GridEditMode.InCell)) Only one of then gives me the JavaScript console error 'Cannot read property 'dataSource' of undefined' on the line of code: $("#index-grid").data("kendoGrid").dataSource.bind("change", function (e) ) I have two Kendo grid definitions, in partial views, that are exactly the same save for the partial view model and the grid item model.
