Members
Type Definitions
# TaskListProps
    Properties of TaskList.
    Properties:
| Name | Type | Attributes | Default | Description | 
|---|---|---|---|---|
| selectedTaskSid | string | <optional> | Sid of the selected task. | |
| compareFunction | function | <optional> | defaultTaskOrderCompare | Callback to control how tasks should be sorted in task list. Negative number means task a should be above task b, positive number that a should be below b. 0 indicates equal priority. | 
| staticFilter | AppConfig.TaskFilterCallback | <optional> | Callback to test if a task belongs to the static area (upper area before filters) in the task list. | |
| filters | Array.<AppConfig.TaskFilter> | <optional> | Filter tasks displayed in the list. | |
| onFilterChange | function | <optional> | Callback when a filter changes. | |
| onTaskSelected | function | <optional> | Callback when a task is selected from the list. | |
| tasks | Map.<string, ITask> | <optional> | Tasks. | |
| children | DynamicComponentChildren.<TaskList.TaskListProps> | <optional> | children |