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
Increments new component count if prefixed
Increments the counter for dynamically created components
only when the component's name includes the designated prefix.
This ensures accurate tracking of newly instantiated components.
Adds form validation and data filtering
Adds functionality to filter validated values from a form,
excluding those with validation errors.
Improves form data handling by providing a way to retrieve
only trusted, validated data.
The validation process checks for disabled controls,
empty optional fields, and individual rule success, ensuring
data integrity and reliability.
Returns named components from section
Ensures that components are returned as an associative array
where keys are the component names and values are the components
themselves. This provides more convenient access to the components.
Moves form snippet outside the form tag
Encapsulates the form within a snippet for better control and reusability.
This allows to refresh the form independently.