Hi there,
we are developing a new CMS using various Telerik Controls.
now we need to provide different looks for some of them, by example for some RadGrids.
At the Moment we tried to handle this problem by using RadGrid with its Default Css and tried to overwrite some of the css information.
To do so we built a new Css, including the Css-Information we want to overwrite according to a classname:
.RadGridFavorites .rgRow td, .RadGridFavorites .rgAltRow td
{
padding-top: 1px !important;
padding-bottom: 1px !important;
}
Cause using Skin-Property of the Class didnt work for us this classname we assigned to the grid as CssClass:
CssClass="RadGridFavorites"
But doing so we have the problem, that our Css-entries are overwritten by the default css, because our entries are loaded earlier.
What would be the best way to use default Grid look, but adding additional Layout-Information ???
we are developing a new CMS using various Telerik Controls.
now we need to provide different looks for some of them, by example for some RadGrids.
At the Moment we tried to handle this problem by using RadGrid with its Default Css and tried to overwrite some of the css information.
To do so we built a new Css, including the Css-Information we want to overwrite according to a classname:
.RadGridFavorites .rgRow td, .RadGridFavorites .rgAltRow td
{
padding-top: 1px !important;
padding-bottom: 1px !important;
}
Cause using Skin-Property of the Class didnt work for us this classname we assigned to the grid as CssClass:
CssClass="RadGridFavorites"
But doing so we have the problem, that our Css-entries are overwritten by the default css, because our entries are loaded earlier.
What would be the best way to use default Grid look, but adding additional Layout-Information ???