The difference between GridEngine and GroupingEngine

I'm using GridGroupingControl.
In one application I have problem with rows height but in another not.
In first when I export layout I have tag GridEngine but in second I have tag GroupingEngine.

To export I'm using code WriteXmlSchema

Where is a difference ?
How to change GridEngine to GroupingEngine ?
Maybe it resolves my problem.

2 Replies

KA Krzysztof Adamowicz August 30, 2018 03:13 PM UTC

It's ok, I forgot about

GridEngineFactory.Factory = new AllowResizingIndividualRows();     

Thax for support


AA Arulraj A Syncfusion Team August 31, 2018 05:28 AM UTC

Hi Krzysztof,  
 
Thanks for contacting Syncfusion support.  
 
Yes, as per your update you can make use of GridEngineFactory.Factory settings. By default, GridEngine does not have the support to resize the individual rows so all row heights are adjusted based on last modified row height.   
 
GroupingEngine can overcome this scenario to resize the individual rows in Grid. To use the GroupingEngine for GridGroupingControl, you could initialize theGridEngine.Factory before that initializing the GridGroupingControl. Please refer the following code example and sample,  
 
Code example  
public Form1()  
{  
    GridEngineFactory.Factory = newAllowResizingIndividualRows();      
    InitializeComponent();          
}  
 
 
Please refer the following UG link,  
 
Regards,  
Arulraj A  


Loader.
Up arrow icon