Hi,
I have tested the differences between setting ServerOperation(true) and ServerOperation(false)...
- if I set it to false no progress spinner is displayed during request the of the data - why?
- if I set false it is not enough to use $("#grid").data("kendoGrid").dataSource.page(1) to refresh the data - I have to set:
$(
"#grid"
).data(
"kendoGrid"
).dataSource.read();
$(
"#grid"
).data(
"kendoGrid"
).dataSource.page(1);
this is because of the Client side paging?
Are there other differences between this modes which I have to consider?
(I didn't find detailed information about ServerOperation(true/false)) and it's consequences)
robert