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!>
Thanks for joining our community and helping improve Syncfusion products!
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>