-
Bug
-
Resolution: Cannot Reproduce
-
Normal
-
None
-
6.0.2
-
All
On the following listbox definition, after navigating to the last page, it resizes itself to show one record. This behavior is correct because there are 81 records and the pagesize is 20. So, the last page would have only one record. However, upon navigating to a previous page, the listbox fails to resize itself back to 20 and now each page only has one record.
[code]
<div height="100%">
<listbox autopaging="true"
height="100%" hflex="true"
model="@bind(vm.locationBatchList)"
mold="paging"
onCreate="@command('initializeModel')"
pageSize="20"
selectedItem="@bind(vm.selectedItem)"
sclass="ListLayoutNoBorder"
vflex="true" width="100%">
[/code]