-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New LazyLoad feature does not play well with dynamic title. #298
Comments
@softsimon @PolarbearDK: How important is the title ordering in this case? Case in point: Assume that the countries aren't necessarily alphabetically ordered, and are possibly arbitrarily ordered. You load the first twenty and check one. Then you search on countries containing "b", and scroll down a few loads and select another. Then you search on "c", scroll again, and select a third. How do you know where the first selection, second selection (b), and third selection (c) sit relative to one another? The first case is easy because it contains all selections, but where do "b" and "c" sit relative to one another if you've scrolled beyond the cases with no search applied? You could possibly match cases that contain both "b" and "c" to map reference points, but this would only narrow things down a little. Would titles displaying in the order selected be acceptable? Maybe you could arrange them in the proper order when the selected titles have been loaded in without using a search parameter? |
I don't think title ordering is important. It would be fine to display in the order they were selected. |
+1 for the selection order. Seems reasonable =) |
Should be fixed now in v1.6.1 |
First of all, kudos to the new lazy load feature. Great stuff!
There is however a problem if you have the following options
The problem is that only the selected items that is visible right now is displayed in the dynamic title.
Reproduced using Lazy loading Plunker:
msSettings.fixedTitle = false
The dynamic title is now blank.
The text was updated successfully, but these errors were encountered: