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
I am using awesomplete in a tool I built to list assets to pick. But the problem is the list is so long that it runs off the page. Even when you filter, there are enough items starting with the same letters to run off the page. I was wondering if it’s possible to have the results of a long list show in columns.
The text was updated successfully, but these errors were encountered:
This isn't really something that can be handled with Awesomplete itself, but you could probably get there with CSS, setting the list max-height to something like 80vh so it's guaranteed to not be taller than than the screen. You could then use css columns, although you'd probably want to have a different number of columns based on viewport width and number of results (if you only have 4 results, it may be odd for each to be in a different column). It may be easier to set the results overflow-y: scroll, so you can scroll within the long list of results.
I am using awesomplete in a tool I built to list assets to pick. But the problem is the list is so long that it runs off the page. Even when you filter, there are enough items starting with the same letters to run off the page. I was wondering if it’s possible to have the results of a long list show in columns.
The text was updated successfully, but these errors were encountered: