Automatically sort table when property changed
See original GitHub issueSo let’s say I have this table:
On each action “Up” and “Down” I swap SortOrder
property between items but I can’t find a way to refresh/re-render the table. It always stays the same.
Tried on every “Up” and “Down” to call this:
List = List.OrderBy(x => x.SortOrder).ToList();
as well as
await InvokeAsync(StateHasChanged)
Any idea?
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Excel: Automatically Sort When Data Changes or Added
In this video tutorial I explain how to get data to sort automatically when that data is changed or added to. 5 FREE...
Read more >How to Automatically Sort Table Rows
1. Select your table. · 2. Go to Properties > RULES on the object inspector. · 3. To apply the rule, select the...
Read more >JavaFX TableView sorting consistency on property update
The table can't re-sort on changes in the underlying data unless the SortedList receives information that those changes have actually occurred.
Read more >Automatically sort rows when entering data in specific column
1. Select the columns to sort. · 2. In the ribbon, click Data > Sort. · 3. In the Sort popup window, in...
Read more >Excel Automatically Sort When Data Changes or Added
Excel Automatically Sort When Data Changes or Added | Auto Sort Excel Formula | Auto Sort Macro · Comments45.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Oh and by the way. Awesome work!
@kedzior-io Well, this works for me:
https://user-images.githubusercontent.com/54608128/115588404-4bfb7e80-a301-11eb-8cc0-8415640bf96b.mp4