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
{{ message }}
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
If the items in the list view are initially hidden then they will not get displayed when the user types in the search filter. Items will only start getting displayed when the user presses the backspace key. I would like the list to have no visible items until the user enters a search filter.
The if/else block on line 5818 now explicitly checks ignores items that have the class ui-screen-hidden, so in my case it will never find any times to display.
if ( val.length < lastval.length || val.indexOf(lastval) !== 0 ) {
// Removed chars or pasted something totally different, check all items
listItems = list.children();
} else {
// Only chars added, not removed, only use visible subset
listItems = list.children( ":not(.ui-screen-hidden)" );
}
If if replace the entire if/else block with listItems = list.children(); then it works.