background: url(../images/global/bg.png) 50% 50% repeat-x;
On my page, I have an editor that now has this gradient as the background. i would like for the background of the editor to be white. How can I do this?
Thanks for any help.

| <rad:GridTemplateColumn HeaderText="Min Value" UniqueName="MinimumValue2" > |
| <ItemTemplate> |
| <asp:Label runat="server" ID="lblMinValue" Text='<%# DataBinder.Eval(Container.DataItem, "MinimumValue") %>' /> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <rad:RadNumericTextBox ID="tbMinValue" runat="server" MinValue="0" MaxValue="2147483647" Value='<%# (double)DataBinder.Eval(Container.DataItem, "MinimumValue") %>' > |
| </rad:RadNumericTextBox> |
| </EditItemTemplate> |
| </rad:GridTemplateColumn> |
I have used RadMenu for a long time with no problems. But now a problem occurred on only one user control but not others.
My web app has one default page that uses a master page containing a menu. Many user controls are loaded on this default page but, depending on menu choice, only one user control is visible.
The menu does not display properly for one of the user controls. But why? And how to troubleshoot?
It looks like the menu has not enough space so it wraps (from one line to 2 lines) and its display overlaps other controls on the page.
I could send a screen shot showing good / bad menu, and below is a "view source" of the page containing the bad menu.
************** view source ******
| <asp:updatepanel runat="server" id="UpdatePanel1"> |
| <contenttemplate> |
| <asp:label runat="server" id="Label1" enableviewstate="false" style="color: green; display: block;" /> |
| </contenttemplate> |
| <triggers> |
| <asp:asyncpostbacktrigger controlid="dockArticles" eventname="WhatShallIPutHere?" /> |
| </triggers> |
| </asp:updatepanel> |
| <telerik:raddock OnCommand="RadDock_Command" runat="server" id="dockArticles" title="Greinar & pistlar" width="250px" AutoPostBack="True" style="margin-bottom: 10px;"> |
| <Commands> |
| <telerik:dockclosecommand AutoPostBack="true" Text="Loka" /> |
| <telerik:dockexpandcollapsecommand AutoPostBack="true" Text="Minnka" /> |
| <telerik:dockpinunpincommand AutoPostBack="true" Text="Festa" /> |
| <telerik:dockcommand autopostback="true" name="MoreArticles" Text="Fjölga greinum" CssClass="comAddItems" /> |
| <telerik:dockcommand autopostback="true" name="LessArticles" Text="Fækka greinum" CssClass="comRemoveItems" /> |
| </Commands> |
| <contenttemplate> |
| <D10:Articles ID="D10Articles" Runat="Server" /> |
| </contenttemplate> |
| </telerik:raddock> |
| if (!Page.IsPostBack) { |
| string query = "SELECT id, node_name, node_type,"+ |
| " default_value, attributes, parent_id FROM default_tree"; |
| dataSource = MyMasterPage.executeSQLQuery(query); |
| Hashtable hash = new Hashtable(); |
| foreach (DataRow dr in dataSource.Rows) { |
| int id = Convert.ToInt32(dr["id"]); |
| string node_name = dr["node_name"].ToString(); |
| string node_type = dr["node_type"].ToString(); |
| string value = dr["default_value"].ToString(); |
| string attributes = dr["attributes"].ToString(); |
| int parent_id = Convert.ToInt32(dr["parent_id"]); |
| RadTreeNode node = new RadTreeNode(node_name); |
| |
| //here I want to be able to customize the node |
| node.Value = parent_id + ';' + node_type + ';' + value + ';' + attributes; |
| hash.Add(id, node); |
| if (parent_id == 0) { |
| optionsTree.Nodes.Add(node); |
| } else { |
| RadTreeNode parent = (RadTreeNode)hash[parent_id]; |
| parent.Nodes.Add(node); |
| } |
| } |
| } |
| function ShowFilter() |
| { |
| //Call existing global function to obtain a reference to the window manager |
| var oManager = GetRadWindowManager(); |
| //Show a particular existing window |
| oManager.open (null,"winFilter"); |
| } |
| function FilterEmployees(radWindow) |
| { |
| var oValue = radWindow.argument; |
| var ajaxManager = $find("<%= ampAssessment.ClientID %>"); |
| ajaxManager.ajaxRequest("Filter:" + oValue); |
| } |