Issue:
In a list view, when you use search, you assume it searches all items in the collection. But it currently does not, when you do not first click Show all xx.
The feature that causes the problem: default truncation and the Show All button
There are various long standing issues around List View. The core issue is the way List Views are truncating the output with the Show All button (which is tucked away out of sight) and that as good as ALWAYS requires a user click (if they notice it in the first place) to have access to all entities in the collection. This obviously was a quick fix long ago, to make the list view less resource intensive, but…
- why not just apply lazy loading as caching mechanism instead?
- table view has the exact opposite, its loads all entities of the collection immediately, so actually loads slower for very big collections. This resource hog is not handled yet?
So the list and table views need a better caching mechanism.
