-
Notifications
You must be signed in to change notification settings - Fork 42
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
Double click column divider to auto resize column #52
Comments
This was discussed in #31 even though it was mostly about resizers not appearing. TLDR is auto sizing is difficult to implement and has limited use in practice because data is dynamic. Maybe I'll add it some day but don't expect it soon. |
Just to clarify, you double click it to expand to the current widest content in the column. Later, if you see new content in the column that's even wider, you double click again to expand the column again, bringing you closer to the perfect width. For these kinds of UIs, it's essential for saving space, so isn't quite so limited use in practice |
Yeah, except law of large numbers will make it so that you will always have top 1 percentile with a lot longer content than bottom 90 percentile. So you have to choose between wasting a lot of space and showing the content of longest row or making the column much more compact and showing full content 90% of the time. Or 95, or 80, everyone will pick their own balance point. No auto sizing is going to help you there, that's what I mean by limited use. It's great for columns with static or fixed max width but you only have to manually set their width once anyway. And it's hard to implement because unlike native gui toolkits where everything is measured in pixels and inherently has it's "best size" so all you have to do is just add up the widths of column contents, web doesn't work that way. There are pixels and So the way I see it, it's non-trivial effort for trivial benefit (double click instead of quick drag one time when setting up the app). |
I get the whole web thing since the Web UI shares code with the native app. And I don't mind the few sub pixels I lose in efficiency without the double click. But what makes it pretty bad is that the app doesn't show you how the column is going to look until you let go of your drag. You just spray and pray. So it's not the best experience resizing columns. If the column resized live as you dragged, then honestly I'd still want the double click but somewhat less |
Valid point, I added a resizing guide to help with the aim. |
And made them resize live. Was initially worried about performance but lag is barely noticeable. |
Live resizing is working great. Regarding the double clicking to resize, most columns have content who's width is very similar the whole way through. Double clicking those columns is very useful because you often want them to be as small as possible and still show you their data. The name column is obviously super variable and not a good use case for this. But most of the other columns make a good use case for this in my opinion. Also, since it's hard to get the calculations just right for a web UI, I would be ok if it was just close enough. If there are only a few rows that don't show every thing, or if you err on the side of slightly too much space, I would be ok with that. |
I would love the ability to double click the column divider to auto resize the column to the size of the longest row. I am coming from Transmission Remote GUI and it is a very small but very appreciated quality of life feature.
Thank you for the work you've done so far :)
The text was updated successfully, but these errors were encountered: