Hi, I want to create a shared data source that I can then apply filtering to. This data source should be initialised from a property on the Razor page model.
With a Grid you can do this:
Html.Kendo().Grid(Model.Devices)
But I can't figure out the equivalent for the DataSource. This is not allowed...
Html.Kendo().DataSource<DeviceAggregate>(Model.Devices)
.Name("devicesDataSource")