I've look through all the available examples for the integration of odata in grid and none was helpful, maybe what I want is not available with radgrid for asp.net.
What I want : A simple server side datasource binding to a odata source like if I was binding to a entity collection.
I want the most simple example to demonstrate that its simple to group, sort and filter an odata feed through a telerik grid. My feed is a odata v3. I do not want client-side binding because it tends to be complexe scripting option.
I want something like that :
var grid = new radgrid();
grid.datasource = new IDatasource("http://someithing/odata") // theres any Odatadatasource implementing IDatasource?
grid.autogeratecollumns = true
grid.enablegrouping = true
grid.enablesorting = true
grid.enablefiltering = true
Thanks for any help!