This question is locked. New answers and comments are not allowed.
Hello,
I am trying to set .PageTo property for grid, which should set as -
.PageTo((int)ViewData["currentPage"]) to get current page, but the problem is ViewData["currentPage"] has no value.
The problem seems to be that ActionResult Pagin event is not working/Firing
although i have registered it as
Any reason why its not working..?
Thanks
I am trying to set .PageTo property for grid, which should set as -
.PageTo((int)ViewData["currentPage"]) to get current page, but the problem is ViewData["currentPage"] has no value.
The problem seems to be that ActionResult Pagin event is not working/Firing
although i have registered it as
.DataBinding(dataBinding => dataBinding.Ajax().OperationMode(
GridOperationMode.Client).Select("_Paging", "Target").Delete("_Delete", "Target").Enabled(true)
Any reason why its not working..?
Thanks