Resize rows handle

Hi.
Is there a way to set up the GridGroupingControl so that the user can resize rows by dragging it across the wole row?
I mean, as an end user I only found a way to resize it through the rowheader column, so if rowheader is hidden there is no way to resize it?
Thx

1 Reply

AR Arulpriya Ramalingam Syncfusion Team December 21, 2017 11:59 AM UTC

Hi Paulo, 
 
Thanks for contacting Syncfusion support. 
 
The GridGroupingControl has the direct support to resize the rows when the RowHeader column is hidden. In order to resize the rows when the row header column is hidden, the AllowRowResizeUsingCellBoundaries property can be set to true. Please refer to the below code and sample, 
 
Code example 
 
//To resize the rows when the row header is hidden 
this.gridGroupingControl1.TableControl.AllowRowResizeUsingCellBoundaries = true; 
this.gridGroupingControl1.TableOptions.ShowRowHeader = false; 
 
 
Please let us know if you have any other queries. 
 
Regards, 


Loader.
Up arrow icon