You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bringing the sort() function into mavo by default was convenient, but deprecating the mv-sort plugin (which now conflicts with sort) eliminates the separately useful feature of a list that is inherently sorted by some key---so that when you add an item, it is placed (or at least shown) in the list at the right spot for its sort order. Without this built-in, to emulate the behavior, you need to create the underlying list as a hidden data structure, then present a sorted version of it---which also requires re-implementing the list editing functionality (adding and removing items) since that is only available by default in the (hidden) underlying list.
The text was updated successfully, but these errors were encountered:
Bringing the sort() function into mavo by default was convenient, but deprecating the mv-sort plugin (which now conflicts with sort) eliminates the separately useful feature of a list that is inherently sorted by some key---so that when you add an item, it is placed (or at least shown) in the list at the right spot for its sort order. Without this built-in, to emulate the behavior, you need to create the underlying list as a hidden data structure, then present a sorted version of it---which also requires re-implementing the list editing functionality (adding and removing items) since that is only available by default in the (hidden) underlying list.
The text was updated successfully, but these errors were encountered: