FormField With Validator Issue

Hi,

I am having an issue when including a required validator with a textbox, within a form field.
Here is a simple representation markup:

When I view the Dialog, the field borders do not fill up the expected width of the dialog:

image

However, when I remove the input text & the validator kicks in, then the borders become the true width:

image

I do not want the validation text to appear below the input box, as it changes the size of the dialog, but I want the border of the input box to be its true size even when the validation text is hidden.

What am I doing wrong?

Hi @blankmonkey,

Try setting the width of RadzenFormField:

<RadzenFormField style="width: 100%" ... >

Thanks Atanas,

Setting the RadzenFormField width made each component take the full width of the dialog, so once I added RadzenColumns to each, I achieved the desired result.

Thanks for your help! :slight_smile: