I am using Telerik Grid for MVC 3 with aspx engine. I have to add a check box only on those rows which status are completed.
columns.Bound(grid => grid.CaseStatus).Width(80);
Above is my bound column now i have to check if CaseStatus value is some specific number then only i have to add check box with that row.
columns.Add(c => c.CaseID).Title("").Format("<input type='checkbox' />").Encoded(false).Width(5);
Any Idea how to do this?