how to point to particular column of ultragrid
if (row.Cells[0].Column.Equals("EmployeeId"))
{
//perform some action
}
When i am debugging and checking it through watch (row.Cells[0].Column) value comes as EmployeeId..But the flow is not entering in the if loop..any idea?