This question is locked. New answers and comments are not allowed.
Dear Teleriks,
I have an mvc grid which one of its column data comes from another source(i.e. user's name which comes from active directory).
I do it in server by this :
but when the request comes from ajax i need to implement the "ClientTemplate" method of grid ajax. therefore calling
I have an mvc grid which one of its column data comes from another source(i.e. user's name which comes from active directory).
I do it in server by this :
columns.Bound(o => o.UserFullName)
.Template(o=>ProfileCommon.GetProfile(o.UserName).ToString())
but when the request comes from ajax i need to implement the "ClientTemplate" method of grid ajax. therefore calling
ProfileCommon.GetProfile(o.UserName) is not possible in it.
also I cannot edit the binding methods becuase of "gridaction" attribute modify the Query for
paging/grouping/ordering.
so what should i do?