Hi is there away to override radwindow default styles in the code behind for example
.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
window.class[.RadWindow .rwStatusbar]. add.style( "display", "none")
window.class[. .RadWindow_Default table .rwTopLeft,]. add.style( "display", "none")
...
Thanks in advance.