|
|
|
|
|
|
---|---|---|---|---|---|
Achieve Record Metrics In All Areas | Ed Holmes | 4/24/2017 | 2/3/2018 | Low | In progress |
Achieve Record Revenues While Increasing Profitability | Samantha Piper | 10/21/2017 | 2/28/2018 | Low | In progress |
Achieve Trial To % Paid Ratio of Over 50% | Jim Packard | 9/10/2017 | 12/13/2017 | Low | In progress |
Begin Content Review | Victor Norris | 4/27/2017 | 2/25/2018 | Medium | In progress |
Choose And Launch New Document Sharing Platform | Brad Farkus | 4/22/2017 | 12/25/2017 | High | In progress |
Close The Final Budget | Hannah Brookly | 6/5/2017 | 6/18/2017 | Low | In progress |
Collect More Accurate Sales Leads Data | Billy Zimmer | 1/5/2018 | 1/31/2018 | Low | In progress |
Create Action Plan To Improve Customer Engagement | Robert Reagan | 8/8/2017 | 4/8/2018 | Medium | In progress |
Design New Version Of Our Site Structure, Navigation And All Pages | Sandy Bright | 5/24/2017 | 2/16/2018 | Low | In progress |
Finalize The Content Strategy | Stu Pizaro | 3/10/2018 | 4/11/2018 | High | In progress |
Finish Raising New Capital For Growth Needs | Wally Hobbs | 10/28/2017 | 4/24/2018 | Low | In progress |
Grow Subscriber Base by 5% Per Week | Sandra Johnson | 7/24/2017 | 2/10/2018 | Low | In progress |
Hit Quarterly Revenue Of Over $1000000 | Clark Morgan | 8/30/2017 | 1/7/2018 | Low | In progress |
Implement A Better System For Tracking Incoming Requests | Karen Goodson | 4/10/2017 | 10/16/2017 | Low | In progress |
Implement New Product Planning Process | Samantha Bright | 1/17/2018 | 4/28/2018 | Low | In progress |
Improve Annual Budgeting And Business Planning | Victor Norris | 2/2/2018 | 4/8/2018 | Medium | In progress |
Improve Internal Document Management | Leah Simpson | 10/31/2017 | 4/25/2018 | Low | In progress |
Improve Our Content And Its Distribution | Arnie Schwartz | 4/29/2017 | 11/9/2017 | High | In progress |
Increase Average Subscription Price | Wally Hobbs | 8/9/2017 | 9/13/2017 | Low | In progress |
Increase End-User Satisfaction Rating From 4.0 To 4.5 | Mary Stern | 5/11/2017 | 12/31/2017 | Low | In progress |
Data grid with 37 rows and 6 columns
The DevExpress Blazor TreeList allows users to sort data as needs dictate. The following user-driven operations are available:
- Click a column header to sort data against one column. Subsequent clicks reverse sort order. A sort glyph indicates the column's current sort order (ascending or descending).
- Shift+click column headers to sort data against multiple columns.
- Ctrl+click a column header to clear sort operations against this column.
- Focus a column header with a keyboard and press Space, Shift+Space, or Ctrl+Space to change sort criteria.
To disable sort operations, set the DxTreeList.AllowSort or DxTreeListDataColumn.AllowSort property to false
(applied to all TreeList columns or to an individual column).
Use the following API members to sort Blazor TreeList data in code:
- DxTreeList.ClearSort — Clears sort operations.
- DxTreeList.SortBy — Sorts TreeList data against the specified column.
- DxTreeListDataColumn.SortIndex — Specifies the column's position among sorted columns. If the property is set to
-1
, TreeList data is not sorted against this column. - DxTreeListDataColumn.SortOrder — Specifies column sort order (ascending or descending).
- DxTreeListDataColumn.SortMode — Specifies whether to use custom logic to sort column data.