How do I disable sorting?

I do not want users to be able to sort data by clicking on the column headers. Is there an easy way to disable this feature?

Hi,

Well, you may try to erase / amend the code related sorting in GridWeb1_CellCommand() event handler :

private void GridWeb1_CellCommand(object sender, Aspose.Grid.Web.CellEventArgs e)

{

if (e.Argument.ToString() == "Col1")

{

// ................do not sort data....

}

}

Thank you.

Hi All,

Thanks for Amjad's reply.

In addition, if you are using databinding, you may set a BindColumn's EnableSort property to false(by default it is true) to disable sorting on this column.

Thank you for considering aspose.