@(Html.Telerik().Grid<Test.Model>()
.Name("TestGrid")
How to access the grid?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This could help. In this solution, you only send the grid’s current parameters (pagenumber, filter etc.) to the controller, and get the data from bll, using this parameters.
Anyway, I don’t think you can send the whole grid to the controller, unless you serialize the grid object, make a server side representation of it, and let the modelbinder the initialize the object from the incomming parameters.
Or you can write a custom modelbinder too 🙂