Is there a way to display the combobox-popup in front of a grid?
Plunkr:
@simon11196 the Popup component is rendered inside the DropDownList component, hence it will open below the parent element with overflow: hidden.
We will further investigate the case and will post a feasible workaround in this thread.
For a temporary workaround of the problem, the overflow can be suppressed via the following CSS:
.k-grid-content,
.k-grid-content td {
overflow: visible;
}
Here is the updated plunkr.
Since these styles may interfere with the grid scrolling and other functionality, a more robust solution is underway.
Fixed with [email protected].
Most helpful comment
Fixed with
[email protected].