ChildContent |
RenderFragment |
null |
Child content of component. |
IsValid |
Boolean |
False |
Validation status. True if the form is valid and without errors. This parameter is readonly. |
ValidationDelay |
Int32 |
300 |
Validation debounce delay in milliseconds. This can help improve rendering performance of forms with real-time validation of inputs
i.e. when textfields have Immediate="true" |
SuppressRenderingOnValidation |
Boolean |
True |
When true, the form will not re-render its child contents on validation updates (i.e. when IsValid changes). This is an optimization which is necessary
especially for larger forms on older devices. |
IsValidChanged |
EventCallback<Boolean> |
|
Raised when IsValid changes. |
Errors |
String[] |
|
Validation error messages |
ErrorsChanged |
EventCallback<String[]> |
|
|
Class |
String |
null |
User class names, separated by space |
Style |
String |
null |
User styles, applied on top of the component's own classes and styles |
Tag |
Object |
null |
Use Tag to attach any user data object to the component for your convenience. |
UserAttributes |
Dictionary<String, Object> |
|
UserAttributes carries all attributes you add to the component that don't match any of its parameters. They
will be splatted onto the underlying HTML tag. |