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 have an issue where I can't see the dropdown menu if there is only 1 row because the table is too small.
This issue is fixed if I add css tags$style(".handsontable {overflow: visible !important; }"), however, this breaks the filter alignment.
To fix this, I had to set a minimum height to the table. In dq_render_handsontable, when the function is sending arguments to rhandsontable, I added these lines:
This fixed the issue by setting a minimum height to the table. It would be easy to alter this to have a user defined height as one number in the min argument, or if the user defines minimum height just skip this code block.
I also tried setting min-height in the css of my ui, but that broke the dropdown option menu for some reason. Hope this helps someone.
The text was updated successfully, but these errors were encountered:
I have an issue where I can't see the dropdown menu if there is only 1 row because the table is too small.
This issue is fixed if I add css
tags$style(".handsontable {overflow: visible !important; }")
, however, this breaks the filter alignment.To fix this, I had to set a minimum height to the table. In
dq_render_handsontable
, when the function is sending arguments torhandsontable
, I added these lines:This fixed the issue by setting a minimum height to the table. It would be easy to alter this to have a user defined height as one number in the
min
argument, or if the user defines minimum height just skip this code block.I also tried setting
min-height
in the css of myui
, but that broke the dropdown option menu for some reason. Hope this helps someone.The text was updated successfully, but these errors were encountered: