Hello,
I have a Radzen Formfield in which I have changed the background color:
Is it not possible to change the background color of the "End":

Adding background color style to the button gives (white around button):

Adding style to the tag yields an error.
The FormField background inherits the inputs' background color. You can change it via the --rz-input-background-color
CSS variable.
- Add a CSS class
<RadzenFormField Class="my-form-field">
- Set the background via CSS
.my-form-field {
--rz-input-background-color: #feff003d;
}
Or add it directly via style:
<RadzenFormField style="--rz-input-background-color: #feff003d;">
That indeed did the trick thank you for your quick response!