Hi, is there a way to override the radwindow default styles in the code behind? For example for something like this:
.RadWindow .rwStatusbar,
.RadWindow_Default table .rwTopLeft,
.RadWindow_Default table .rwTopRight,
.RadWindow_Default table .rwFooterCenter,
.RadWindow_Default table .rwFooterLeft,
.RadWindow_Default table .rwFooterRight,
.RadWindow_Default .rwCorner,
.RadWindow_Default .rwBodyLeft,
.RadWindow_Default .rwBodyRight {
display: none !important;
}
using something like this in the code behind instead
window.class.Add.Style(RadWindow .rwStatusbar, display:none)
...
Jesse