- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
3 hours ago
When a modal is configured to display a record form, the message "Component is not configure" appears the moment the modal is triggered.
The component is configured. What happens is that the modal renders before the Form Controller has finished resolving its inputs (Table, Sys ID, Query), so the Form component is momentarily rendered without valid configuration and falls back to the placeholder state.
Resolution
Delay the rendering of the form until the controller has finished loading, using the container's Component visibility setting.
- Select the container that wraps the Form component.
- Go to Configure â Component visibility.
- In Hide component, bind the condition to the Form Controller's loading state:
@data.record.isLoading = true
With this in place the container stays hidden while the controller is loading and becomes visible only once the form data is ready, so the placeholder message is never shown.
- 28 Views
