Hello ALL,
which is the event that can I used to change the data befor bind it to grid like:
which is the event that can I used to change the data befor bind it to grid like:
try
{
Telerik.Web.UI.
GridDataItem _dataItem = e.Item as Telerik.Web.UI.GridDataItem;
if (_dataItem["Status"].Text == "ASSIGNED")
{
if (Session["DepartmentCode"].ToString() != "61")
_dataItem[
"Status"].Text = "APPROVED";
}
}
catch
{
}
thanks
ghadeer