This question is locked. New answers and comments are not allowed.
I have grid which does ajax binding.Html.Telerik().Grid<Web.Models.GridModel>().DataBinding(dataBinding => dataBinding.Ajax()//.OperationMode(GridOperationMode.Client).Select("_Grid", "PR"))Controller looks like this. If user loose the session/cookie, it will be redirect to the login page. Since this is ajax action, it doesn't redirect. So I'm trying to handle based on the response, but how? I have looked Grid ClientEvents but none of them is useful. using MVC UI Extensions v2011.2.914.340[GridAction][Authorize]public ActionResult _Grid(string filterKeyword){GridModel<GridModel> newGrid = new GridModel<GridModel>(){Data = getList(filterKeyword)};return View(newGrid);
}