This question is locked. New answers and comments are not allowed.
Hi,
I'm integrating a grid into a page, but I've one little problem.
This page list items of a specified "category".
So I receive an "Id" as parameter of my controler.
No problem here, I can load it without problem, but how to configure the ajax request to make its request to
/MyController/MyAction/The_id_of_the_Current_page ?
My code is actually:
How to add the "id" part?
I'm integrating a grid into a page, but I've one little problem.
This page list items of a specified "category".
So I receive an "Id" as parameter of my controler.
No problem here, I can load it without problem, but how to configure the ajax request to make its request to
/MyController/MyAction/The_id_of_the_Current_page ?
My code is actually:
@{Html.Telerik().Grid<IEnumerable<Infoteam.RsSolutions.AdManager.Common.Data.DataModel.Ad>>() .Name("AdsGrid") .DataBinding(db => db.Ajax().Select("_AdsPaging", "Ads")) .Pageable() .Scrollable() .Render(); }How to add the "id" part?