No and they still still give many examples for MVC controls. Took me an age to find something I found immediately for the no MVC UI.
Why is this small example not on the sorting page of the MVC documentation..?
So frustrating....!!!
Nikolay Rusev
Telerik team
commented on 20 Oct 2014, 06:11 AM
Hello Brian,
These settings are usually listed in the API reference section of the documentation as linked in the previous post.
Regards,
Nikolay Rusev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
I'm using server binding so I added the following to my Grid configuration and it works great. The demos don't seem to give a lot of Server binding examples, so I didn't know I could use the same data source settings.
If you wish to configure the Grid for Server Binding, I suggest following a similar implementation as the following demo, should you happen to have stumbled upon any pitfalls:
You can configure the DataSource to apply initially sort expressions. For example:
.DataSource(dataSource => dataSource
.Ajax()
.Sort(sort => sort.Add(
"City"
).Ascending())
// <-- initial sort expression
.Read(read => read.Action(
"Index"
,
"Home"
))
)
Regards,
Nikolay Rusev
the Telerik team
Why is this small example not on the sorting page of the MVC documentation..?
So frustrating....!!!
These settings are usually listed in the API reference section of the documentation as linked in the previous post.
Regards,
Nikolay Rusev
Telerik