I can't set the size of a column

Hi, I can't set the size of a column within a row (I'm not using a grid).


In that image, you can see that columns (2) do not occupy the entire width of that window

<RadzenRow Gap="0.5rem" Style="margin-top:7px;">
    <RadzenStack >
        <RadzenRow >
            <RadzenColumn Size="6" >
                <RadzenFormField Text="Descripción" Variant="Variant.Filled">
                    <RadzenTextBox @bind-Value="OTipoMaterial.Descripcion" MaxLength="30" />
                </RadzenFormField>
                <ValidationMessage For="@(() => OTipoMaterial.Descripcion)" />
            </RadzenColumn>
            <RadzenColumn Size="6" >
                <RadzenFormField Text="Observaciones" Variant="Variant.Filled">
                    <RadzenTextBox @bind-Value="OTipoMaterial.Observaciones" MaxLength="90" />
                </RadzenFormField>
                <ValidationMessage For="@(() => OTipoMaterial.Observaciones)" />
            </RadzenColumn>
        </RadzenRow>

To correct those columns, I tried using Size, SizeMD, SizeSM, etc. with different values but those columns don't occupy the entire width of that window.
Please can someone tell me what I'm doing wrong? thanks...

Hi @gpizarrob369,

You are nesting RadzenStack inside RadzenRow which I don't think would work. RadzenRow is supposed to contain RadzenColumn only. Try removing the outer RadzenRow and RadzenStack.

1 Like