I'm currently working with the Form.IO JS library to develop a new form. Within this form, I need to include a DataGrid containing 11 components. To ensure all components fit inline, I have applied the CSS rule overflow: auto
(
overflow-x: auto; overflow-y: hidden
). However, an issue arises when opening a select
component as the choices display within the DataGrid, obscuring them. I have attempted adjusting the z-index
property but haven't had any success 😐.
https://i.stack.imgur.com/k7Ksl.png
If anyone could provide guidance on displaying the dropdown choices outside of the DataGrid, I would greatly appreciate it! Thank you in advance!