or
What I am trying to do is set the color of the inside of the radwindow. The skin I have set as Web20, but for what resides on the inside of the radwindow i want the color to the antiqueWhite. I have tried applying a css style but it does not take even if I put important.
<telerik:RadWindowManager ID="rwManager" runat="server" CenterIfModal="true" Modal="true" Animation="FlyIn" Behaviors="Close" Skin="Web20" VisibleStatusbar="false" > <Windows> <telerik:RadWindow ID="rwdelete" runat="server" NavigateUrl="~/MAC/Delete.aspx" Width="600px" Height="300px" ShowContentDuringLoad="false" CssClass="rwDelete"></telerik:RadWindow> <telerik:RadWindow ID="rwChange" runat="server" NavigateUrl="~/MAC/Change.aspx" Width="800px" Height="600px" ShowContentDuringLoad="false"></telerik:RadWindow> <telerik:RadWindow ID="rwNew" runat="server" NavigateUrl="~/MAC/NewUser.aspx"></telerik:RadWindow> </Windows> </telerik:RadWindowManager>.rwDelete { background-color:antiquewhite !important;}
I applied to the div that sits on the inside of the window and this works but it does not fill the whole inside of the radwindow.

<telerik:GridTemplateColumn HeaderText="State" SortExpression="State_cd" UniqueName="State_cd" ShowFilterIcon="True" DataField="State_cd" CurrentFilterFunction="EqualTo" AutoPostBackOnFilter="True" > <ItemTemplate> <asp:Label runat="server" ID="lblState" Text='<%# Eval("State_cd") %>'></asp:Label> </ItemTemplate> <FilterTemplate> <telerik:RadComboBox runat="server" ID="rcbState" DataTextField="State_cd" DataValueField="State_cd" AppendDataBoundItems="true" RenderingMode="Simple" EnableEmbeddedSkins="False" Skin="2015" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("State_cd").CurrentFilterValue %>' OnClientSelectedIndexChanged="State_Changed" OnInit="rcbState_Init"> <Items> <telerik:RadComboBoxItem Text="All" /> </Items> </telerik:RadComboBox> <telerik:RadScriptBlock ID="RadScriptBlock2" runat="server"> <script type="text/javascript"> function State_Changed(sender, args) { var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>"); var strState = args.get_item().get_value(); tableView.filter("State_cd", strState, "EqualTo"); } </script> </telerik:RadScriptBlock> </FilterTemplate> </telerik:GridTemplateColumn>
