I\'m a new to DevexpressGridView.
DevexpressGridView
I have a Dev Grid in my webpage, and I want to handle the RowClick Event like:
RowClick Event
private void
So it would be like this:
private void GridView1_Click(object sender, EventArgs e) { System.Data.DataRow row = GridView2.GetDataRow(GridView2.FocusedRowHandle); if(row[0].ToString() == "") { //YOUR LOGIC } }
GridView2 is your main view.