How do i delete data, if the user had entered it incorrectly

Take for e.g
I have two user inputs radio button and drop down field(rendered using custom renderer).
both these fields are optional, and if the user wants to undo their action, how to proceed on this one?
in simple way, How do i remove the value from the html input, so that the field values are cleared

Hi @bala,

Whether this is possible depends on the renderer set. For example in React Material you should always be able to unset an enum while the radio control does not support an unset.

Of course you can always implement a custom renderer which behaves in the way you like, e.g. offering an “X” button next to the radio controls.

1 Like

Thanks for the quick reply :slight_smile: