Form modes
LetsForm component can easily switch between modes: the default one is the "edit mode"
Loading...
Set the property enabled=false
to switch to "disabled mode" and disable completely the form, all fields will be grayed out,
this is useful for example while the form payload is being submitted.
Loading...
Set the property plaintext=true
to switch to "plaintext mode" and show all fields in plain text,
this is useful in confirmation views, for example after the form was succesfully submitted
Loading...
Set the property readOnly=true
to switch to "read only mode" and disable all fields of the form without graying them out.
Loading...