DropdownVirtualProps
Props
The following table outlines the props for the DropdownVirtualProps:
| Name | Type | Default | Description |
|---|---|---|---|
| itemSize | number | - | Specifies the fixed pixel height of each row. Required for precise virtualization calculations. |
| overscanCount | number | 5 | Specifies the extra items rendered before and after the viewport for smooth scrolling. |
| pageSize | number | - | Specifies the number of items in a single data page. Used for progressive loading and skeleton sizing. |
| scrollMode | ScrollMode.FetchAll | Specifies the scroll mode for virtualization. This property applies only for remote data. When using DataManager, scrollMode determines whether data is fetched for the current viewport (ScrollMode.FetchViewPort) or a full fetch is performed (ScrollMode.FetchAll). | |
| showSkeleton | boolean | false | Specifies whether skeleton placeholders should be enabled during data fetch. |
| totalCount | number | - | Specifies the total number of items available in the data source. |