Hello,
I want to take the export of my telerik grid data.
My question is from that page:So please See the url: http://www.telerik.com/support/kb/aspnet-mvc/grid/export-to-excel.aspx
At the above url page I found the way to export the grid data, but one thing which is not make me clear is that in controller the action Export(int page, string orderBy, string filter){ GridModel model = Model().ToGridModel(page, 10, orderBy, string.Empty, filter); // remaining part }
What is GridModel , if it is in built method , but I don't know how to use it, is there any assembly reference is required to use it? And if it is custom method then what e have to write in it.