Dropdown Options Not Displaying in Reactive Filament Form Section When Disabled
I'm working with a Filament form and facing an issue with a section that is conditionally disabled. Here's the setup:
I have a section created with and it's disabled based on a condition: . This conditional disabling is functioning as expected. The section is disabled when 'c_type_id' is null and becomes enabled when a 'c_type_id' is selected.
The issue arises with a Select component within this enabled section. The Select component is defined as follows:
When the section is enabled (i.e., 'c_type_id' is selected), I can interact with the Select component, and it allows me to create new relationships using the createOptionForm. However, the main issue is that the dropdown list itself does not show up.
What could be causing the dropdown not to display? Are there any additional settings or adjustments I need to make to ensure the dropdown list is visible and functional when the section is enabled?
1 Reply
If I click on the dropdown, nothing happens