Hi Everyone,
After upgrading Ignition from 8.3.3 to 8.3.6 yesterday, I noticed an issue with the Perspective Form Dropdown component behavior. It is happening in designer preview and client session.
Previously, the dropdown options list would open directly below the dropdown field as expected. After the upgrade, the popup appears detached/floating lower on the screen. No stylesheet or styling applied on this form component.
I have attached a screenshot below.
Has anyone else experienced this after upgrading to 8.3.6?
Is this a known regression/change in dropdown popup positioning behavior?
Thanks!
Hi @paul-griffith ,
If you have any insights on this issue or could point me in the right direction regarding a fix or an IGN ticket, I would be very grateful for your time.
Thanks !
Sagar
Ignition Support
Follow this link to get to the IA help center and raise a ticket
Hi @Jasmine_Quick,
Thanks for the link. I'll head over to the IA help center and submit a ticket there.
Regards.
Hi Everyone,
I reached out to IA support, and this is a known bug introduced in version 8.3.5 .
It is fixed and will be officially released in version 8.3.7.
Temporary CSS Workaround
Until the update, add this to your stylesheet.css to fix the positioning:
CSS
/* form dropdown options parent */
.component-modal-wrapper {
position: absolute;
top:40px;
}
/* form dropdown options. Drilled from component-modal-wrapper */
/* to avoid affecting normal dropdown components */
.component-modal-wrapper .iaDropdownCommon_options_modal{
top:0 !important;
left:0 !important;
}
Thanks !