There are two ways to programmatically highlight a row:
Use the Row's IsCurrent property:
this.radGridView1.Rows[RowIndex].IsCurrent = true;
Use the GridViewInfo's CurrentRow property:
this.radGridView1.MasterGridViewInfo.CurrentRow = this.radGridView1.Rows[RowIndex];
Friday, September 21, 2007
Subscribe to:
Post Comments (Atom)
1 comment:
Thanks Buddy its
Work!
Post a Comment