Why is there scroll bar for `Data Grid` and cuts off `Select`?
Hi,
- why does the
data gridcomponent have a scroll bar? - And why does it cut off the
selectin such an ugly manner?
I'm not sure why this decision was made, but here's how I was able to override this behavior with CSS:
.formio-component-datagrid { overflow: visible !important; height: auto !important; }
From what I can gather, it seems like we added an overflow-x property to "auto" so that the datagrid could scroll side to side if it does not fit in the width of the screen. This must also "inform" the overflow-y to also be set to auto. I am submitting a change, that may fix it, but I am not sure if it will. I will push this to our example application soon and we can try it out.
https://github.com/formio/formio.js/pull/5299
Thank you for taking the time to report this issue. This issue has been resolved.