Kendo-filter has dropdowns that are not appearing in the mat-dialog modal of my angular app. I am using the boiler plate code that is provided in the kendo-filter over view page. I can See The Add Group, Add Filter, but after clicking add filter button, the filter dropdowns appear, The dropdowns themselves do not work, I tried targeting the dropdown with z-index 1000 with no luck. Has anyone seen this before?
If there was a popupSettings for kendo-filter, then all generated ui components could inherit from that setting.
<kendo-filter
#filter
[filters]="filters"
(valueChange)="onFilterChange($event)">
</kendo-filter>
<ng-template let-currentItem #template>
<kendo-dropdownlist
[popupSettings]="{ appendTo: 'component' }"
></kendo-dropdownlist>
</ng-template>
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
@Component({
// ...
})
export class YourComponent {
@ViewChildren(DropDownListComponent) dropdownLists: QueryList<DropDownListComponent>;
// ... other component properties and methods ...
ngAfterViewInit() {
this.dropdownLists.forEach(dropdown => {
dropdown.popupSettings = { appendTo: 'component' };
});
}
}
This image is the date picker, and it proves its behind the modal.
