Hey guys. Can someone point me in the right css direction to resolve this issue. When using the grid add or edit feature certain fields are being clipped at the top and bottom of the grid. In my case the datetimepicker clips at the top and autosuggest fields get clipped at the bottom. I’m sure it’s just a matter of applying overflow:visible or a z-index somewhere but I’ve tried everywhere (including card-header ew-grid-upper-panel and card-footer ew-grid-lower-panel) but I can’t figure it out. Thanks.
If you do not have many fields in the grid, you can turn off responsive table, e.g. you can use Startup Script (assume v2020)<?php if (CurrentPage()->$this->isGridAdd() || CurrentPage()->isGridEdit()) { ?>
$(".table-responsive.ew-grid-middle-panel).removeClass(“table-responsive”);
That worked!!! thanks a mil