Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
177 views
Hello,

How to refresh the grid whie unloading  the pop up window ?

The grid should display the refreshed data on same page selected in footer. (i.e. state of the grid should be maintained)
Shinu
Top achievements
Rank 2
 answered on 29 Mar 2010
4 answers
585 views

Hello,

I am having trouble finding the proper syntax for getting controls inside Radschedulers InlineInsertTemplate (or any other template for that matter)  I have read the articles in the KB about accessing controls inside templates dealing with RadMenu but none specifically dealing with RadScheduler.

I am trying to check the value of a textbox in my template on appointment insert to see if it has a value or not.  If not, I want to be able to insert some sort of default value into the appointment.  Whenever I try to access controls in the inline edit using schedule.FindControl("myTextBox") or schedule.NamingContainer.FindControl("myTextBox") I am met with an error

Object reference not set to an instance of an object.

Here is an example of the code I am trying to use.

    Protected Sub schedule_AppointmentInsert(ByVal sender As ObjectByVal e As Telerik.Web.UI.SchedulerCancelEventArgs) Handles schedule.AppointmentInsert  
 
        'Insert this dummy value into the textbox when appointment is being inserted  
        CType(schedule.FindControl("TitleTextBox"), TextBox).Text = "YO" 
 
    End Sub 

If anyone can help me out with this I would greatly appreciate it.

Thanks
Peter
Telerik team
 answered on 29 Mar 2010
3 answers
92 views
On the Page_Load the Attribute IS set correctly.

So that on NodeExpand of the top level the myPC node is created.

However, the Attributes.Add in NodeExpand does not set the attributes.

Therefore NEXT time it comes into expand, Drive node is NOT created.

Is this a bug?

protected void Page_Load(object sender, EventArgs e) 
     if (!Page.IsPostBack) 
     { 
           RadTreeNode rootNode = new RadTreeNode("Computers"); 
           rootNode.Attributes.Add("type""ROOT"); 
           rootNode.Value = "ROOT"
           rootNode.ImageUrl = "~/TreeView/Img/WindowsXP/6myNetworkPlaces.gif"
           rootNode.Expanded = true
           rootNode.ExpandMode = TreeNodeExpandMode.ServerSideCallBack; 
           RadTreeView1.Nodes.Add(rootNode); 
     } 
}  
 
protected void RadTreeView1_NodeExpand(object sender, RadTreeNodeEventArgs e) 
            if (e.Node.Attributes["type"] == "ROOT"
            { 
 
                RadTreeNode node = new RadTreeNode("mypc"); 
                node.Attributes.Add("type""COMPUTER"); 
                node.Value = "COMPUTER";          
                node.ImageUrl = "~/TreeView/Img/WindowsXP/2PCRemote.gif"
                node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack; 
                e.Node.Nodes.Add(node); 
 
                return
            } 
 
            if (e.Node.Attributes["type"] == "COMPUTER"
            { 
 
                RadTreeNode node = new RadTreeNode("C"); 
                node.Attributes.Add("type""DRIVE"); 
                node.Value = "DRIVE"
                node.ImageUrl = "~/TreeView/Img/WindowsXP/15hardDisk.gif"
                node.ExpandMode = TreeNodeExpandMode.ServerSideCallBack; 
                e.Node.Nodes.Add(node); 
            } 
 

Veronica
Telerik team
 answered on 29 Mar 2010
1 answer
58 views
I am trying to run the LIveDemo's solution locally. When I open the solution and try and compile I get the following error:

"Error 8 Cannot implicitly convert type 'double' to 'decimal'. An explicit conversion exists (are you missing a cast?)  "

However when I click the error, it doesn't bring me to any code to look at or correct, so I'm not sure on how to fix the issue. Has anyone seen this error when trying to compile Q1 2010 solution?

Kevin

Tsvetie
Telerik team
 answered on 29 Mar 2010
7 answers
119 views
Hi ,
How to wrap text if Ramenu size is fixed? 
We are using fixed width of radmenu, and sometimes we have long text in  radmenu like "The local school system's board of education"
then how to wrap these all text. I am giving Live URL http://www2.gsba.com/
We are using radmenu in DNN, so radmenuitem style won't work.
(Eg. <rad:RadMenuItem Width="150px" Text="This is the item with the very long text" style="white-space:normal" />)
 
Thanks,
Vivek
Yana
Telerik team
 answered on 29 Mar 2010
1 answer
156 views
Is it possible to delete multiple files at once with the file explorer? For example, if I hold ctrl and select and few files and then click the delete button, only the last file I selected is deleted. Can I make it so that all of the selected files are deleted?
Lini
Telerik team
 answered on 29 Mar 2010
3 answers
267 views
Hi
I am making use of a Radcombobox inside a Radgrid during Edit mode. I get this problem when I have different values for the
DataValueField and DataTextField. When I make use of the same valeus for both, I don't get the error and the Radcombobox is geting populated.

 

<telerik:RadComboBox ID="CbAircraftModelType" runat="server" Skin="Black"      
                            SelectedValue='<%# Bind("modelTypeName") %>' EmptyMessage=" Select Aircraft Type"                                
                            HighlightTemplatedItems="True" DataTextField="modelTypeName" DataValueField="modelTypeId"    
                            EnableTextSelection="False" DataSourceID="SqlDataSource_AircraftType"      
                            OnClientSelectedIndexChanged="cb_OnClientSelectedIndexChanged" />    
 
I am making use of a SqlDataSource to populate the Radcombobox.

<asp:SqlDataSource ID="SqlDataSource_AircraftType" runat="server"      
                    ConnectionString="<%$ ConnectionStrings:AvengeConnectionString %>"      
                 SelectCommand="select modelTypeName,modelTypeId from Avenge.dbo.AircraftModelType ">     
            </asp:SqlDataSource>    
 

I don't have any code for working with this in the code-behind.

This is the error that I am getting:

Selection out of range     
Parameter name: value      
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.      
    
Exception Details: System.ArgumentOutOfRangeException: Selection out of range     
Parameter name: value     
    
Source Error:      
    
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.       
    
Stack Trace:      
    
    
[ArgumentOutOfRangeException: Selection out of range     
Parameter name: value]     
   Telerik.Web.UI.RadComboBox.PerformDataBinding(IEnumerable dataSource) +172     
   Telerik.Web.UI.RadComboBox.OnDataSourceViewSelectCallback(IEnumerable data) +39     
   System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +31     
   Telerik.Web.UI.RadComboBox.OnDataBinding(EventArgs e) +102     
   Telerik.Web.UI.RadComboBox.PerformSelect() +37     
   System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +73     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   System.Web.UI.Control.DataBindChildren() +211     
   System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) +102     
   System.Web.UI.Control.DataBind() +15     
   Telerik.Web.UI.GridEditFormItem.SetupItem(Boolean dataBind, Object dataItem, GridColumn[] columns, ControlCollection rows) +387     
   Telerik.Web.UI.GridItemBuilder.CreateItems(GridGroupingContext group) +979     
   Telerik.Web.UI.GridTableView.CreateItems(IEnumerator enumerator, GridColumn[] columns, ControlCollection controls) +187     
   Telerik.Web.UI.GridTableView.CreateControlHierarchy(Boolean useDataSource) +1573     
   Telerik.Web.UI.GridTableView.CreateChildControls(IEnumerable dataSource, Boolean useDataSource) +782     
   System.Web.UI.WebControls.CompositeDataBoundControl.PerformDataBinding(IEnumerable data) +57     
   System.Web.UI.WebControls.DataBoundControl.OnDataSourceViewSelectCallback(IEnumerable data) +114     
   System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) +31     
   System.Web.UI.WebControls.DataBoundControl.PerformSelect() +142     
   Telerik.Web.UI.GridTableView.PerformSelect() +28     
   System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +73     
   Telerik.Web.UI.GridTableView.DataBind() +351     
   Telerik.Web.UI.GridTableView.Rebind() +98     
   Telerik.Web.UI.GridCommandEventArgs.ExecuteCommand(Object source) +395     
   Telerik.Web.UI.RadGrid.OnBubbleEvent(Object source, EventArgs e) +191     
   System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +37     
   Telerik.Web.UI.GridItem.OnBubbleEvent(Object source, EventArgs e) +165     
   System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +37     
   System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e) +118     
   System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) +135     
   System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10     
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13     
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +175     
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565     
    
      
    
Hope someone will be able to help me with this.  
 
Thanks.  
Simon
Telerik team
 answered on 29 Mar 2010
1 answer
95 views
Hi,

How can we add a dropdownlist or combo within the textarea of radeditor? For example a dropdownlist with suggestions as you type in the textarea of radeditor.

Thanks,
Pravs
Shinu
Top achievements
Rank 2
 answered on 29 Mar 2010
4 answers
141 views
I have an invisible field on a page that I populate with a reference ID. How do I get this value into a RadComboBox SelectedValue property at runtime so the combo box has the default (invisible field value) selected when the window comes up?

Thanks,

Joe B
Simon
Telerik team
 answered on 29 Mar 2010
4 answers
178 views
Hi ,
I am Using this CSS. 
Below is code for CSS.
we want to remove the wrapped item text space. for more refernece see scennshot.

<dnn:RadMenu  ID="RadMain_Menu" Width="198px" runat="server" Flow="vertical" SelectedPathHeaderItemCss="focused"
                                            EnableEmbeddedSkins="false"  ShowPath="true" CssClass="RadMenu_Skin"
                                            Skin="" EnableViewState="false"  GroupOffsetX="8" GroupOffsetY="4"   Wrap="false"  SelectedPathItemCss="focused">
   </dnn:RadMenu>

And CSS.




.RadMenu_Skin .expandRight
{
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
background-color: transparent;
}

.RadMenu_Skin .rmLink rmExpanded
{
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
background-color: transparent;
}
.RadMenu_Skin .rmText rmExpandRight
{
/*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
background: transparent url( "../images/arrow.png" ) no-repeat right center;
background-color: transparent;
}

.RadMenu_Skin .rmLevel1 .rmLink
{
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=78)";
filter: alpha(opacity=78);
opacity: 0.78;
-moz-opacity: 0.78;
white-space:normal !important;  
    float:none !important;  
    position:inherit;  
}

.RadMenu_Skin .group .text {
    padding:3px 10px 5px;
}
/*Space Between root items and child items menu */
 


/*focused menu item color */.RadMenu_Skin a.focused
{
background-color: #34C6F9;
}
.RadMenu_Skin .rmRootGroup
{
}
.RadMenu_Skin .rmLink
{
border: 1px solid white;
border-bottom: 0;
border-left: 0;
border-right: 0;
height: auto;
width: auto;
}
.RadMenu_Skin .rmText
{
padding-left: 5px; 
width: 198px;
padding-right: 5px; 
margin-left: 0px;
left: 0px;
}
.RadMenu_Skin .rmLeftArrow, .RadMenu_Skin .rmRightArrow, .RadMenu_Skin .rmTopArrow, .RadMenu_Skin .rmBottomArrow
{
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
background-color: transparent;
}
.RadMenu_Skin .rmRootGroup
{
border: 1px solid #3d556c;
background-color: #627f97;
}
.RadMenu_Skin .rmHorizontal
{
background-position: 0 0;
background-repeat: repeat-x;
}
.RadMenu_Skin .rmVertical
{
background-position: 0 -425px;
background-repeat: repeat-x;
}
/* <Root items> */.RadMenu_Skin, .RadMenu_Skin .rmLink
{
font: normal 10pt/23pt "Verdana" , Verdana, Verdana;
text-decoration: none;
}
.RadMenu_Skin .rmLink
{
color: #fff;
}
.RadMenu_Skin .rmLink, .RadMenu_Skin .rmText
{
background-position: 0 1050px;
background-repeat: no-repeat;
height:auto;
}
.RadMenu_Skin .rmLink:hover
{
text-decoration: none;
cursor: pointer; /* background: transparent url("http://localhost/gsbadnn/arrow.png") no-repeat right center; */
}
.RadMenu_Skin .rmFocused, .RadMenu_Skin .rmSelected
{
color: #0d202b;
background-position: 0 -72px;
}

.RadMenu_Skin .rmLeftArrow, .RadMenu_Skin .rmRightArrow, .RadMenu_Skin .rmTopArrow, .RadMenu_Skin .rmBottomArrow
{
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
background-color: transparent;
}
.RadMenu_Skin .rmLink:hover .rmText, .RadMenu_Skin .rmFocused .rmText, .RadMenu_Skin .rmSelected .rmText
{
background-position: 100% -96px;
}
.RadMenu_Skin .rmExpanded, .RadMenu_Skin .rmExpanded:hover
{
/*color: #0d202b;*/
background-position: 0 -120px;
}
.RadMenu_Skin .rmExpanded .rmText, .RadMenu_Skin .rmExpanded:hover .rmText
{
background-position: 100% -144px;
}
.RadMenu_Skin .rmDisabled, .RadMenu_Skin .rmDisabled:hover
{
color: #aaa;
}
.RadMenu_Skin .rmDisabled:hover, .RadMenu_Skin .rmDisabled:hover .rmText
{
background: none;
}
/* </Root items> *//* <Submenu items> */.RadMenu_Skin .rmGroup, .RadMenu_Skin .rmMultiColumn, .RadMenu_Skin .rmGroup .rmVertical
{
border: 1px solid #768ca5;
margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmSlide .rmScrollWrap
{
background-image: none;
}
.RadMenu_Skin_rtl .rmGroup, .RadMenu_Skin_rtl .rmMultiColumn, .RadMenu_Skin_rtl .rmGroup .rmVertical
{
background-position: 100% 0;
margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmGroup .rmLink
{
/* color: #000;*/
margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmGroup .rmLink:hover, .RadMenu_Skin .rmGroup .rmFocused, .RadMenu_Skin .rmGroup .rmSelected
{
    margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmRootGroup .rmHorizontal
{
background-image: none;
margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmScrollWrap .rmVertical
{
border: 0;
}
.RadMenu_Skin .rmGroup .rmFirst, .RadMenu_Skin .rmGroup .rmLast
{
background: none;
margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmGroup .rmLast
{
padding-bottom: 1px;
}
.RadMenu_Skin .rmGroup .rmLink:hover, .RadMenu_Skin .rmGroup .rmFocused, .RadMenu_Skin .rmGroup .rmSelected, .RadMenu_Skin .rmGroup .rmExpanded
{
background-position: 0 -168px;
margin:0 0 0 0px;
padding:0 0px 0 0px;
}
.RadMenu_Skin .rmGroup .rmLink:hover .rmText, .RadMenu_Skin .rmGroup .rmFocused .rmText, .RadMenu_Skin .rmGroup .rmSelected .rmText, .RadMenu_Skin .rmGroup .rmExpanded .rmText
{
background-position: 100% -192px;
}
.RadMenu_Skin .rmGroup .rmDisabled, .RadMenu_Skin .rmGroup .rmDisabled:hover
{
color: #aaa;
}
/* <expand arrows> */.RadMenu_Skin .rmGroup .rmExpandRight
{
height: auto;
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
}
.RadMenu_Skin .rmGroup .rmExpandRight:hover
{
background-color: #001C4E;
}
.RadMenu_Skin .rmGroup .rmExpandDown
{
background-position: 100% -216px;
}
.RadMenu_Skin_rtl .rmGroup .rmItem .rmLink .rmText
{
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
}
.RadMenu_Skin .rmGroup .rmLink:hover .rmExpandRight, .RadMenu_Skin .rmGroup .rmFocused .rmExpandRight, .RadMenu_Skin .rmGroup .rmSelected .rmExpandRight, .RadMenu_Skin .rmGroup .rmExpanded .rmExpandRight, .RadMenu_Skin .rmGroup .rmLink:hover .rmExpandDown, .RadMenu_Skin .rmGroup .rmFocused .rmExpandDown, .RadMenu_Skin .rmGroup .rmSelected .rmExpandDown, .RadMenu_Skin .rmGroup .rmExpanded .rmExpandDown
{
background-position: 100% -240px;
}
.RadMenu_Skin .rmGroup .rmDisabled:hover .rmExpandRight, .RadMenu_Skin .rmGroup .rmDisabled:hover .rmExpandDown
{
/*background-image: url('/../../../..arrow.png');*/
background-position: 100% -216px; /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center;*/
background: transparent url( "../images/arrow.png" ) no-repeat right center;
}
/* </expand arrows> *//* <rtl> */.RadMenu_Skin_rtl .rmGroup .rmLink:hover, .RadMenu_Skin_rtl .rmGroup .rmFocused, .RadMenu_Skin_rtl .rmGroup .rmSelected, .RadMenu_Skin_rtl .rmGroup .rmExpanded
{
background-position: 100% -264px;
}
.RadMenu_Skin_rtl .rmGroup .rmLink:hover .rmText, .RadMenu_Skin_rtl .rmGroup .rmFocused .rmText, .RadMenu_Skin_rtl .rmGroup .rmSelected .rmText, .RadMenu_Skin_rtl .rmGroup .rmExpanded .rmText
{
background-position: 0 -288px;
}
.RadMenu_Skin_rtl .rmGroup .rmExpandLeft
{
background-position: 0 -312px;
}
.RadMenu_Skin_rtl .rmGroup .rmLink:hover .rmExpandLeft, .RadMenu_Skin_rtl .rmGroup .rmFocused .rmExpandLeft, .RadMenu_Skin_rtl .rmGroup .rmSelected .rmExpandLeft, .RadMenu_Skin_rtl .rmGroup .rmExpanded .rmExpandLeft
{
background-position: 0 -336px;
}
.RadMenu_Skin_rtl .rmItem .rmExpanded, .RadMenu_Skin_rtl .rmItem .rmExpanded:hover
{
background: transparent url( "../images/arrow.png" ) no-repeat right center; /*background:border: 1px solid white;     border-bottom: 0;     border-left: 0;     border-right: 0;*/ /*background: transparent url("/GSBADNN/arrow.png") no-repeat right center; background:border: 1px solid white;     border-bottom: 0;     border-left: 0;     border-right: 0;*/
}
/* </rtl> *//* </Submenu items> *//* <Submenu offsets (WebBlue - specific, overlapping submenus)> */.RadMenu_Skin .rmSlide
{
margin: -3px 0 0 1px;
}
.RadMenu_Skin .rmVertical .rmSlide, .RadMenu_Skin .rmSlide .rmSlide, .RadMenu_Skin_Context .rmGroup .rmSlide
{
margin: 0 0 0 -5px;
}
.RadMenu_Skin_rtl .rmSlide
{
margin: -3px 0 0 -1px;
}
.RadMenu_Skin_rtl .rmVertical .rmSlide, .RadMenu_Skin_rtl .rmSlide .rmSlide, .RadMenu_Skin_Context_rtl .rmGroup .rmSlide
{
margin: 0 0 0 5px;
}
/* </Submenu offsets> *//* <Scrolling arrows> */.RadMenu_Skin .rmLeftArrow, .RadMenu_Skin .rmRightArrow
{
background-color: #E0E5F5;
margin-left: 10px;
}
.RadMenu_Skin .rmLeftArrow
{
background-position: -8px -312px;
border-right: 1px solid #B7BDCD;
}
.RadMenu_Skin .rmRightArrow
{
background-position: -482px -216px;
border-left: 1px solid #B7BDCD;
}
.RadMenu_Skin .rmTopArrow, .RadMenu_Skin .rmBottomArrow, .RadMenu_Skin .rmGroup .rmLeftArrow, .RadMenu_Skin .rmGroup .rmRightArrow
{
background-color: #f0f0f0;
}
.RadMenu_Skin .rmTopArrow
{
background-position: 50% -367px;
border-bottom: 1px solid #B7BDCD;
}
.RadMenu_Skin .rmBottomArrow
{
background-position: 50% -391px;
border-top: 1px solid #B7BDCD;
}
/* </Scrolling arrows> *//* <Separators> */.RadMenu_Skin .rmVertical .rmSeparator .rmText
{
background-position: 0 -406px;
}
.RadMenu_Skin_Context .rmVertical .rmSeparator .rmText, .RadMenu_Skin .rmVertical .rmVertical .rmSeparator .rmText, .RadMenu_Skin .rmHorizontal .rmVertical .rmSeparator .rmText
{
background-position: 0 -408px;
}
.RadMenu_Skin .rmHorizontal .rmSeparator .rmText, .RadMenu_Skin .rmVertical .rmHorizontal .rmSeparator .rmText
{
background-position: 0 -386px;
}
/* </Separators> *//* </RadMenu / WebBlue> */div.RadMenu_Skin
{
background-color: rgb(255, 255, 255);
}
div.RadMenu_Skin .rmItem .rmLink
{
background-color: #001C4E;
background-image: url( "../images/MenuBack.jpg" ); /*background-image: url("/GSBADNN/MenuBack.jpg");*/
background-position: top;
background-repeat: repeat-x;
border: 1px solid white;
border-bottom: 0;
border-left: 0;
border-right: 0;
height: auto;
}
div.RadMenu_Skin .rmItem .rmLink:hover
{
background-color: rgb(52, 198, 249);
}
div.RadMenu_Skin > .rmVertical .rmLink .rmExpandRight
{
}
div.RadMenu_Skin .rmItem .rmGroup
{
 background: none; 
}
/* Rad Menu subitem */div.RadMenu_Skin .rmGroup .rmItem .rmLink
{
background-color: #34C6F9;
background-image: url( "../images/Menu_Hover_Back.png" ); /*background-image: url("/GSBADNN/Menu_Hover_Back.png");*/
color: Black;
}
div.RadMenu_Skin .rmGroup .rmItem .rmLink:hover
{
background-color: rgb(1, 31, 81);
color: White;
}
.RadMenu_Skin .rmItem .rmLink:hover
{
}
.RadMenu_Skin .rmItem .rmFocused, .RadMenu_Skin .rmItem .rmSelected
{
border: 1px solid white;
border-bottom: 0;
border-left: 0;
border-right: 0;
height:  auto;
}
.RadMenu_Skin ul.rmRootGroup, .RadMenu_Skin div.rmRootGroup
{
border: 1px solid white;
background-color: white;
border-top: none !important;
border-bottom: none !important;
}
.RadMenu_Skin .rmGroup
{
border-top: none !important;
border-bottom: none !important;
}
.RadMenu_Skin .rmItem .rmExpanded:hover
{
/*background:border: 1px solid white;     border-bottom: 0;     border-left: 0;     border-right: 0;*/
}
.rmItem rmLast
{
background-color: #34C6F9;
}
/*Selected item CSS Style */
.RadMenu_Skin .rmLink:hover, .RadMenu_Skin .focused
{
color: Black;
background-image: url( "../images/Menu_Hover_Back.png" ) !important; /*background-image: url("/GSBADNN/Menu_Hover_Back.png")!important;*/
background-repeat: no-repeat;
text-decoration: none;
background: url( "../images/arrow.png" ) no-repeat right center; /*background:  url("/GSBADNN/arrow.png") no-repeat right center;*/
}

.RadMenu_Skin a.expanded
{
/*background:  url("/GSBADNN/arrow.png") no-repeat right center;*/
background: url( "../images/arrow.png" ) no-repeat right center;
}
div.RadMenu .rmGroup .rmText {
   margin:0 0 0 14px;
   padding:0 0px 0 0px;
   text-align: left;
 }
 
 div.RadMenu .rmGroup  .rmText
{
    width: 198px !important;
}

div.RadMenu .rmRootGroup .rmText 
{      
    width: 198px !important;  
   padding: 0px; 
   
}

Thanks for time and Support.
 Vivek
Yana
Telerik team
 answered on 29 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?