New to Telerik UI for ASP.NET Core? Download free 30-day trial

Sizing

The sizing feature of the Telerik UI for ASP.NET Core Data Grid attempts at addressing the requirement for a compact grid component, which renders more items by utilizing the available space mainly through setting smaller paddings in its cells.

To increase or decrease the size of the Grid, utilize its Size configuration.

Changing the Size property affects different building blocks of the component such as tables, buttons, inputs, an dropdowns among others.

            @(Html.Kendo().Grid<ModelName>()
               .Name("compact-grid")
               .Size(ComponentSize.Small) // Enable compact Grid.

Affected Elements

The Size option does not affect elements which are displayed inside a popup such as a Filter Menu, Column Menu, and so on. By design, all popup elements are rendered on root level and not inside the Grid.

See Also

In this article