sort
Description
Sorts tasks in the grid
sort: (field: string | ((task1: Task, task2: Task) => 1 | 0 | -1), desc?: boolean, parent?: string | number, silent?: boolean) => void;
Parameters
field- (required) string | SortTasks - the name of the column that the grid will be sorted by or a custom sorting functiondesc- (optional) boolean - specifies the sorting direction: true - descending sort and false - ascending
sort. By default, falseparent- (optional) string | number - the id of the parent task. Specify the parameter if you want to sort tasks only in the branch of the specified parent.silent- (optional) boolean - specifies whether rendering should be invoked after reordering items
Example
<input type='button' value='Sort by task name' onclick='sortByName()'/>
<script>
var n_direction = false;
function sortByName(){
if (n_direction){
gantt.sort("text",false);
} else {
gantt.sort("text",true);
}
n_direction = !n_direction;
};
gantt.init("gantt_here");
</script>
Related samples
Details
The custom sorting function takes the Task objects as arguments and should return the number (1,0, or -1)
The parent parameter is ignored when applying a custom function for sorting. Check the example.
When the sort() method is used, Gantt doesn't add any sorting icon (an arrow displaying the sorting direction). In case you need to render a sorting icon, you can add it manually. Check the example.