2
Answers

how to point to particular column of ultragrid

Kriti

Kriti

14y
3.3k
1

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?
 
Answers (2)