Hi
I am having trouble understanding what some of these options do and having trouble to find documentation about it
@Html.Kendo().Grid<Model>().Name().Columns().DataSource(source => source.Ajax().PageSize(20).Model(m => model.Id(p =>p.Id)).ServerOperation(false).Read(read => read.Action("","").Data("getId")
I don't understand what Model does in Datasource, ServerOperation(false), and .Data("getId").
I also have a endpoint
public ActionResult GetData([DataSourceRequest] DataSourceRequest, int id){ // some stuff }
I understand this is hit by the Action Method in read but I don't understand why most of the DataSourceRquest in empty (for instance page size is 0, when I would think it would be 20).