aspnet-devexpress-dot-web-dot-aspxgantt-dot-gantttasklistsettings-b967102f.md
Specifies whether users can sort all columns.
Namespace : DevExpress.Web.ASPxGantt
Assembly : DevExpress.Web.ASPxGantt.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(true)]
public bool AllowSort { get; set; }
<DefaultValue(True)>
Public Property AllowSort As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true, to sort all columns; otherwise, false.
|
You can access this nested property as listed below:
| Library | Object Type | Path to AllowSort |
|---|---|---|
| ASP.NET MVC Extensions | GanttSettings |
.SettingsTaskList .AllowSort
| | ASP.NET Web Forms Controls | ASPxGantt |
.SettingsTaskList .AllowSort
|
The AllowSort property allows you to allow or deny users from sorting all columns in the control.
<dx:ASPxGantt runat="server" ID="Gantt" >
<SettingsTaskList AllowSort="False" >
<Columns>
...
</Columns>
</SettingsTaskList>
</dx:ASPxGantt>
To control users’ ability to sort an individual control, use the AllowSort property.
<dx:ASPxGantt runat="server" ID="Gantt" >
<SettingsTaskList Width="55%" >
<Columns>
<dx:GanttTimeEditColumn FieldName="FlightStart" />
<dx:GanttTextColumn FieldName="ArriveTo" AllowSort="False" />
...
</Columns>
</SettingsTaskList>
</dx:ASPxGantt>
See Also