We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Column sorting GGC

Hi,

we are using a GGC. Now I want to disable column sorting for a particular column - how can I do this?
Is this possible?

Best regards,
Andy

1 Reply

AD Administrator Syncfusion Team February 2, 2007 04:21 PM UTC

Hi Andy,

You can handle the TableControlQueryAllowSortColumn event of the grid and cancel the sorting for the required columns. Please try the following code snippet and let me know if this helps

// Form_Load Event
this.gridGroupingControl1.TableOptions.AllowSortColumns = true;
this.gridGroupingControl1.TableControlQueryAllowSortColumn += new GridQueryAllowSortColumnEventHandler(gridGroupingControl1_TableControlQueryAllowSortColumn);

// TableControlQueryAllowSortColumn Event
void gridGroupingControl1_TableControlQueryAllowSortColumn(object sender, GridQueryAllowSortColumnEventArgs e)
{
if (e.Column.Name == "ColumnName")
e.AllowSort = false;
}

Best regards,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon