I have a Height="330px" property set on the <SfListBox> component which honors until data is loaded into control that exceeds the height.
This started happening once I upgraded to 19.3 On 19.2 it would create a scroll bar.
<SfListBox TValue="string[]" DataSource="@Vehicles" Height="330px" TItem="VehicleData">
<ListBoxFieldSettings Text="Text" Value="Id" />
</SfListBox> |
I've tried to attach a modified version of the codes you provided with my code. I need to upload a file that exceeds the 30mb limit.
When first started the LB's are the correct size but when you click on the Edit button the height is lost.
See https://www.screencast.com/t/98ilmm0vn video for demo.
No worries I have a workaround.
#scope1, #scope2 {
height: 330px;
}
Will maintain the height of the SfListBox.