We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Row Information required after selecting row

How can i get the row information On selection of a row using row header.

1 Reply

AD Administrator Syncfusion Team August 11, 2005 02:26 PM UTC

If this is a GridDataBoundGrid, there are many ways to go about this. One way is to use the RowEnter event. private void gridDataBoundGrid1_RowEnter(object sender, GridRowEventArgs e) { int colIndex = this.gridDataBoundGrid1.Binder.NameToColIndex("pkName"); object val = this.gridDataBoundGrid1[e.RowIndex, colIndex].CellValue; }

Loader.
Live Chat Icon For mobile
Up arrow icon