This is a migrated thread and some comments may be shown as answers.

Increase the toolbar height in Grid

2 Answers 721 Views
Grid
This is a migrated thread and some comments may be shown as answers.
ConstantLearner
Top achievements
Rank 1
ConstantLearner asked on 04 Aug 2020, 11:40 PM
I tried searching for this but did not find any answer hence posting here. How do i increase the tool bar size on an kendo grid ? 

2 Answers, 1 is accepted

Sort by
0
ConstantLearner
Top achievements
Rank 1
answered on 05 Aug 2020, 12:01 AM

i have a figured out a way to increase the height of the grid toolbar using jquery but was wondering if there is a property of kendo that allows us to do that. 

currently im using this 

$(".k-grid-toolbar").css("height", "30px");

0
Petar
Telerik team
answered on 06 Aug 2020, 10:33 AM

Hi ConstantLearner,

The height of the Toolbar inside the Grid can be changed either using the approach you've shared or by defining similar CSS that will format the Toolbar according to the targeted business logic. 

    .k-grid-toolbar{
      height: 100px;
    }

There is no built-in property that can control this parameter of the Toolbar.  

Regards,
Petar
Progress Telerik

Tags
Grid
Asked by
ConstantLearner
Top achievements
Rank 1
Answers by
ConstantLearner
Top achievements
Rank 1
Petar
Telerik team
Share this question
or