How to add controls in between the radio button list

Hello,

I would like to add controls in between the Radzen RadioButtonList, displayed as you can see in the following picture.
Would it be possible ?
RadzenButtonListWithControlsInBetween

Thank you for your time,

Elisa

Hi @Elisa,

Such layout is not possible with RadioButtonList component - only text and value are supported.

Ok, thank you for your quick reply.

Finally, I managed to display the controls as I wanted with CSS and Html formatting.

<div class="row">
   <div class="col-md-6">
      <RadzenRadioButtonList @bind-Value=@Type TValue="TypeP" Orientation="Orientation.Vertical" Change=@((args) => OnChange(args))>
         <Items>
             <RadzenRadioButtonListItem Text="Article" Value="Article">
             </RadzenRadioButtonListItem>
             <RadzenRadioButtonListItem Text="Article issu" Value="ArticleP">
             </RadzenRadioButtonListItem>
             <RadzenRadioButtonListItem Text="Création d'un" Value="ArticleN">
             </RadzenRadioButtonListItem>
         </Items>
      </RadzenRadioButtonList>
   </div>
   <div class="col-md-4">
        <br><br>
        <RadzenDropDown @bind-Value="@PCode" TextProperty="Text" ValueProperty="Value" AllowClear="true" AllowFiltering="true" Data="FilteredListP" LoadData=@(...) />
       <br>
       <RadzenTextBox style="display: block" MaxLength="50" @bind-Value=@CreateNewPText  />
    </div>
</div>