Priya shine
Priya shine

Reputation: 33

Cannot reduce the height of kendo grid in asp.net mvc

I'm using 2 Kendo Grids to show some data. One Grid is above followed by 2nd grid I want to reduce the height of grids Given the code .HtmlAttributes(new { style = "height: 350px;" }) It worked but the pagination part remains at the same position

Thanks

Upvotes: 0

Views: 52

Answers (1)

Eddie
Eddie

Reputation: 186

The grid has a function called "Height". Just use

.Height(350)

Upvotes: 1

Related Questions