I cannot seem to limit the height of the RadzenListBox. Here is a simple setup. I want to limit the size of the list to the height of the div.
<RadzenRow Gap="1rem" AlignItems="AlignItems.Start" JustifyContent="JustifyContent.Start">
<RadzenColumn class="rz-text-align-left" Size="2">
<div style="max-height:200px">
<RadzenListBox FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterOperator="StringFilterOperator.StartsWith" AllowFiltering="true"
AllowClear="true" TValue="SecurityGroup" Value="@selectedSecurityGroup" Change="SelectedSecurityGroupChanged" Data="@securityGroups"
Style="width:100%;height:100%" ValueProperty="SecurityGroupId" TextProperty="Name"></RadzenListBox>
</div>
</RadzenColumn>
</RadzenRow>
Can you please help?