-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
comboBox dropdowns not working on modal #184
Comments
@evansmwendwa Please help |
Along with the comboBox dropdowns month and year, the calendar position is getting fixed at the place of its initial opened position. when the user scrolls it's not moving along with the input field ... PFA Tech stack using : Note : |
It is a workaround Can you try with below code and let me know how it works for you import { Component, ElementRef, HostListener, Renderer2, OnInit } from '@angular/core'; @component({ constructor(private el: ElementRef, private renderer: Renderer2) {} ngOnInit() {
} @HostListener('window:scroll', []) private updateCalendarPosition() {
} |
month and year dropdown not showing the options on click of select over modal.
The text was updated successfully, but these errors were encountered: