-
Notifications
You must be signed in to change notification settings - Fork 47
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
Fix the ngReactGridCheckbox column default width #35
base: master
Are you sure you want to change the base?
Conversation
It's not the best solution, if there are a small number of columns then the select column would be huge for no reason. |
Hi @vladud, you're right it's not an exact fix, but I thought it would be a saner default value. I think the percentage one is even more error-prone. In that case, maybe we could change ngReactGridCheckbox with a syntax like this : |
No, I don't think you can set it that way, it would be ok to export the setting.. Personally I preferred to implement my own selection without a checkbox column, but it's a quick and dirty implementation .. I've only used the library for a few tests so far |
I'm mentioning @ewu02 also, who can probably provide more informed feedback. From my point of view, we should :
I can provide a patch if we agree on that, and probably also provide an example for documentation. |
Yeah, that seems ok. Maybe you could also change the default "10%" cell width to 100% / noOfColumns ... I guess that would provide the perfect fit. (no of column except select column) |
Just recently encountered the same issue, which seems to show up when there are many columns. I would favor having an override option with % over table width (or noOfColumns), with the default being 10% of table width as well. |
Created pull request #60 that should solve this issue. |
Like #33, not sure if it is only on my browser, but the default checkbox column width is too small. Feel free to close abruptly if I'm the only one :)
Tested using a grid setup like this :
Before :
After :