Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

I want to align 3 SfDropDownList horizontally. I am using the templates from the syncfusion demo.

The first dropdownlist is below the second and the third but should be on the same level:

<div class="row">

<!-- This section 3 times BEGIN ->

<div class="col-lg-2 sb-property-border>

<div class="control-wrapper">

<label class="example-label">Select a class</label>

<SfDropDownList TItem="ClassModel1" TValue="string" PopupHeight="300px" PopupWidth="300px" Placeholder="Class1" Width="300px">

<DropDownListEvents TItem="ClassModel1" TValue="string" ValueChange=OnChangeClass1" />

<DropDownListFieldSettings Text="Description" Value="ID"/>

</SfDropDownList>

</div>

</div>

<!-- This section 3 times END ->

</div>