is there a way to change a css "corner-radius" to grid... the atributes "k-grid-header" or "k-grid" dont work?
1 Answer, 1 is accepted
0
Dimo
Telerik team
answered on 21 Dec 2011, 03:53 PM
Hi Hernan,
You can use the followind code. If you are not using grouping, then remove the grouping header CSS class and uncomment the other two lines in the second CSS rule.
.k-grid
{
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
overflow:hidden;
}
.k-grouping-header /*,
.k-grid-header,
.k-grid-header table */
{
-moz-border-radius:10px10px00;
-webkit-border-radius:10px10px00;
border-radius:10px10px00;
overflow:hidden;
}
.k-grid-pager
{
-moz-border-radius:0010px10px;
-webkit-border-radius:0010px10px;
border-radius:0010px10px;
overflow:hidden;
}
Regards,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!