1

I need to handle the double click event of a GroupByRow description and cannot figure out how to do that.

Jon Erickson
  • 112,242
  • 44
  • 136
  • 174

1 Answers1

1

Do you mean the group header row? If so, handle the grid's DoubleClickRow event, and in your event handler test e.Row.IsGroupByRow. This property will be true for the group headers.

PaulF
  • 1,133
  • 8
  • 14