diff --git a/components/listview/overview.md b/components/listview/overview.md index 63de087eba..a6afb95775 100644 --- a/components/listview/overview.md +++ b/components/listview/overview.md @@ -91,6 +91,23 @@ The ListView can refresh its data manually so the component can react to changes The ListView provides events related to editing and [loading data on demand]({%slug listview-manual-operations%}). [Read more about the Blazor ListView events]({%slug listview-events%}). +## ListView Parameters + +The table below lists the ListView parameters. For a full list of the ListView API members (parameters, methods, and events), check the [ListView API Reference](https://docs.telerik.com/blazor-ui/api/Telerik.Blazor.Components.TelerikListView-1). + +@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) + +| Parameter | Type and Default Value | Description | +| --- | --- | --- | +| `Class` | `string` | The `class` attribute of the `
` element. Use it to apply custom styles or [override the theme]({%slug themes-override%}). | +| `Data` | `IEnumerable` | The ListView component data collection. | +| `EnableLoaderContainer` | `bool`
(`true`) | The ListView loading container that is shown when there are long-running operations. | +| `Height` | `string` | The `height` style of the component in any [supported CSS unit]({%slug common-features/dimensions%}). The default ListView dimensions depend on the CSS theme. | +| `Page` | `int`
(`1`) | The current page of the ListView component. | +| `Pageable` | `bool`
(`false`) | Determines if the ListView allows paging. | +| `PageSize` | `int`
(`10`) | The number of items to display per page in the ListView. | +| `Width` | `string` | The `width` style of the component in any [supported CSS unit]({%slug common-features/dimensions%}). The default ListView dimensions depend on the CSS theme. | + ## Next Steps * [Implement ListView Templates]({%slug listview-templates%})