Kendo-angular: Combobox popup not visible in grid

Created on 25 Oct 2016  路  3Comments  路  Source: telerik/kendo-angular

Is there a way to display the combobox-popup in front of a grid?

Plunkr:

http://plnkr.co/edit/Zb3N2rpf76vcxRD6xQxr?p=preview

Bug

Most helpful comment

Fixed with [email protected].

All 3 comments

@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].

Was this page helpful?
0 / 5 - 0 ratings