Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to align the Kendo Grid toolbar in righthand side

How to align the Kendo UI Grid toolbar buttons in righthand side.

like image 640
Ranga Reddy Avatar asked May 22 '14 09:05

Ranga Reddy


1 Answers

Add the following CSS style:

.k-grid-toolbar a {
    float:right;
}

See it here: http://jsfiddle.net/OnaBai/W42wK/

like image 61
OnaBai Avatar answered Sep 27 '22 21:09

OnaBai