Column resizing and FrozenRows

Hi,

When i set the FrozenRows of a GridControl to zero, i cannot
resize the columns (the resizing cursor doesn't show).

Is there a way to have the resizing with a zero FrozenRows ?

Thanks,
P.OM
Reportive

3 Replies

VP Varun P Syncfusion Team May 26, 2010 09:07 AM UTC

Hi Puthirak,

Thanks for using Syncfusion products.

When you set the FrozenRows to 0 you need to listen to the ResizingColumns event and set the AllowResize to true. Please refer the below code snippet.

void grid_ResizingColumns(object sender, GridResizingColumnsEventArgs args)
{
args.AllowResize = true;
}

Please let me know if you have any queries.

Thanks,
Varun


PO Puthirak OM May 26, 2010 01:03 PM UTC

Thank you, it works.

P.OM
Reportive


VP Varun P Syncfusion Team May 27, 2010 02:11 PM UTC

Hi Puthirak,

Thanks for the update.

Please let me know if you have any queries.

Thanks,
Varun

Loader.
Up arrow icon