FieldAccessor
Properties
Property | Description |
---|---|
| Current value of the field. Read Only |
| Get default value of the field. Read Only |
| Get name of the field. Read Only |
| This is a method that checks if current value is same as given. Read Only |
| Boolean that indicates if the field has changes which are not yet persisted to server. Read Only |
| Get value of the field on server. Read Only |
| ErrorAccessor. Read Only |
Examples
Display field value
<FieldView
field="title"
render={(fieldAccessor) => <>{fieldAccessor.value}</>}
/>