You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
A Select component with a display condition remains hidden on form load. When it becomes visible, it temporarily shows a raw value in the dropdown instead of the actual selected text while loading data from an API. This creates a poor user experience, as users see an unintended value before the data is fully loaded.
Version/Branch
v5.0.0-rc.2
To Reproduce
Steps to reproduce the behavior:
Add a Select component in FormIO and configure it with a display condition (initially hidden).
Set its data source to fetch options from an API URL.
Trigger the condition to make the Select component visible.
Observe the dropdown while it is loading data from the API.
Expected behavior
The Select component should either remain empty or show a loader while fetching data.
Once the data is loaded, the actual selected text should be displayed correctly.
Actual Behavior
When the Select component appears, it temporarily displays a raw value in the dropdown instead of the correct selected text.
This issue persists until the API call is completed, after which the correct text is shown.
Screenshots
Attached video.
Select.Component.Raw.Value.mp4
Additional context
Proposed Solution:
There should be a way prevent the incorrect value from appearing while the data is still loading?
Can we show a loader instead of this value until the API fetch completes?
Add any other context about the problem here.
Sample form JSON to reproduce it on builder
Description
A Select component with a display condition remains hidden on form load. When it becomes visible, it temporarily shows a raw value in the dropdown instead of the actual selected text while loading data from an API. This creates a poor user experience, as users see an unintended value before the data is fully loaded.
Version/Branch
v5.0.0-rc.2
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Actual Behavior
Screenshots
Attached video.
Select.Component.Raw.Value.mp4
Additional context
Proposed Solution:
Add any other context about the problem here.
Sample form JSON to reproduce it on builder
{"display":"form","settings":{"pdf":{"id":"1ec0f8ee-6685-5d98-a847-26f67b67d6f0","src":"https://files.form.io/pdf/5692b91fd1028f01000407e3/file/1ec0f8ee-6685-5d98-a847-26f67b67d6f0"}},"components":[{"label":"Select","widget":"choicesjs","tableView":true,"data":{"values":[{"label":"a","value":"a"},{"label":"b","value":"b"}]},"validateWhenHidden":false,"key":"select","type":"select","input":true},{"label":"Dependent","widget":"choicesjs","tableView":true,"dataSrc":"url","defaultValue":29,"data":{"url":"https://jsonplaceholder.typicode.com/todos","headers":[{"key":"","value":""}]},"valueProperty":"id","template":"{{ item.title }}","validateWhenHidden":false,"key":"dependent","conditional":{"show":true,"when":"select","eq":"b"},"type":"select","lazyLoad":false,"selectValues":"data","disableLimit":false,"noRefreshOnScroll":false,"input":true},{"type":"button","label":"Submit","key":"submit","disableOnInvalid":true,"input":true,"tableView":false}]}
The text was updated successfully, but these errors were encountered: