Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
50 views
Hello friends of telerik. I want to pass tha data cells from a row to textboxs by client-side.
I try to follow this tutorial but I only have the same result with the object undefinided. How i can do this? what is the real name of the column?
Here is my code (Don't worry If you can't understand the name, it's on spanish) and a screen shoot of the table.
<telerik:RadGrid ID="dgv_usuarios" runat="server">
    <ClientSettings>
        <Selecting AllowRowSelect="true" />
        <Animation AllowColumnReorderAnimation="true" />
        <ClientEvents OnRowClick="rowUsuario" />
    </ClientSettings>
</telerik:RadGrid>

function rowUsuario(sender, eventArgs) {
      var grid = sender;
      var MasterTable = grid.get_masterTableView(); var row = MasterTable.get_dataItems()[eventArgs.get_itemIndexHierarchical()];
      var cell = MasterTable.getCellByColumnUniqueName(row, "Nombre");
      alert("Su dato es: " + cell.innerHtml);
}

Princy
Top achievements
Rank 2
 answered on 22 Nov 2013
0 answers
96 views
Hi, I am trying to implement this demo http://demos.telerik.com/aspnet-ajax/tooltip/examples/usingwithimagemap/defaultcs.aspx but the problem is when I am using an image too big. Is there a way to put the imagemap inside some container and make it zoomable?

Thanks.
Julio
Top achievements
Rank 1
 asked on 21 Nov 2013
3 answers
179 views
Hi,

I am working with creating recurring meetings. I don't have any problem creating recurring meeting and editing the series, but when I want to edit the single occurence of the series i am facing many difficulties. My modified subject won't get updated one in AppoinementUpdate event and my appointment gets deleted on updating. I also donno for some reason after my update event is fired , insert event gets fired and it has the updated subject. Not sure whats going on. I need it asap.
Can anyone please suggest what the issue could be?
Thanks in advance.

Regards,
Rakesh
Rakesh
Top achievements
Rank 1
 answered on 21 Nov 2013
2 answers
261 views
Hi!

I am currently using this javascript to alert my user that they didn't fill in a field and to make sure it's filled before clicking the button:

(before you look at this note that I will rewrite the redundancy out of it later, the original script was to check all boxes and if any of them was empty, fire the alert, I just added the color thing)

                function RadButton1_MouseOver(sender, args) {
    var quotevar = document.getElementById("<%=RadComboBox1.ClientID%>");
    var custvar = document.getElementById("<%=rcbCustomer.ClientID%>");
    var empvar = document.getElementById("<%=RadComboBox2.ClientID%>");
    var delvar = document.getElementById("<%=RadComboBox3.ClientID%>");
    var datevar = document.getElementById("<%=RadDatePicker1.ClientID%>");
                    if (quotevar.value == "" || custvar.value == "" || empvar.value == "" || delvar.value == "" || datevar.value == "") {
                        if (quotevar.value == null || quotevar.value == "") {
                            quotevar.style.borderColor = "red";
                        }
                        if (custvar.value == null || custvar.value == "") {
                            custvar.style.borderColor = "red";
                        }
                        if (empvar.value == null || empvar.value == "") {
                            empvar.style.borderColor = "red";
                        }
                        if (delvar.value == null || delvar.value == "") {
                            delvar.style.borderColor = "red";
                        }
                        if (datevar.value == null || datevar.value == "") {
                            datevar.style.borderColor = "green";
                        }
 
                        alert("Please make sure to fill in all fields at the top of the invoice before continuing.");
                    }
}

It works great on all my controls that I'm using except for raddatepicker.

I know that the script is correctly checking the control for empty data because the alert still pops up if it is the only control that isn't populated with data.

Is there some sort of alternative style that I should be changing?

I attached a few pictures.
The first one is with no fields filled in and the script generating the style and pop up correctly on all but the datepicker.
The second one shows that with all the other controls filled in, the alert still fires properly but the border color does not change.

What could it be that is limiting this from working?


Garrett
Top achievements
Rank 1
 answered on 21 Nov 2013
4 answers
182 views
This is a bit of an edge case, so I'll need to explain.

Say you have a scheduler with its time zone set to Central Standard Time (UTC -6) and you create a scheduled appointment. The schedule is set to occur yearly, every first Monday of December. If you choose a start time of 7pm or later, the appointments appear on the day before they should be scheduled.

Here's what I think is happening: The recurrence rule first figures out what dates the first Monday of December are for the next few years. It then converts the time into UTC to store in the database. So 7pm would become 1am. When these appointments are shown on the schedule, it then tries to convert it back to Central Standard Time, however since it's going back before midnight, the day also gets pushed back.

Ultimately the problem is that when the recurrence rule is figuring out the Occurrences property, it first figures out the dates, and THEN adds the converted time, rather than converting the entire date for the time zone.

If this is a known problem or there's any kind of workaround, please let me know. Thanks.
Derek
Top achievements
Rank 1
 answered on 21 Nov 2013
3 answers
152 views
Good afternoon --

I have a drop down list created that has the description as the text and a URL as the value.  I want the user to select an item from the drop down list and redirect them to the URL.  However, the event doesn't fire.  This is what I have on the form:

<telerik:RadDropDownList ID="MUQuickLinks" CssClass="QuickLinks" AutoPostBack="true" DefaultMessage="MU QUICK LINKS" OnSelectedIndexChanged="MUQuickLinks_SelectedIndexChanged" runat="server" TabIndex="1" ToolTip="Jump to a particular subject on our site." DataSourceID="dsQuickLinks" DataTextField="qlDescription" DataValueField="qlLink"></telerik:RadDropDownList>

And this is in the code-behind:

    Protected Sub MUQuickLinks_SelectedIndexChanged(sender As Object, e As DropDownListEventArgs)
        HttpContext.Current.Response.Redirect(e.Value, True)
    End Sub

Again, the event doesn't fire when the user selects an item in the drop down list.  The AutoPostBack simply reloads the page.  I've tried other events like OnItemSelected and the event still doesn't fire.

Any assistance is greatly appreciated.

Thanks,
Michael
Michael
Top achievements
Rank 1
 answered on 21 Nov 2013
1 answer
167 views
Hi

We have an asyncUpload control ,which is not uploading the files[shows the red colored bullet point when upload button is pressed] when used with webseal.The error we are receiving is related with WebResource.axd [path is not correct] .When we are looking into viewsource othe path was actually missing one folder ...

for example,,,
the correct path from which this .axd file is geting downloaded is  compname\WebResource.axd

but  the for this  control \WebResource.axd is showing in the path..

I have read that there is some known issue with Ajax and webseal. Also found some similar kind of issue in this forum
http://www.telerik.com/community/forums/aspnet-ajax/docking/scriptresource-axd-problem.aspx


Any help please
Hristo Valyavicharski
Telerik team
 answered on 21 Nov 2013
9 answers
338 views
Hi,

We are implementing a system where a user can upload files over HTTP (using Telerik RadUpload) and the files being stored on a third party system (such as Amazon Cloud). We could simply connect to the service after the file has uploaded and save the file on the cloud, however we dont want the user to have to wait for this to happen.

A more efficient solution would be to transfer the data as the file is being transmitted from their browser.

I have access to the source code for the RadUploadHttpModule, but I am unable to find or gain access to the stream where the file is being appended to.

Thanks
Hristo Valyavicharski
Telerik team
 answered on 21 Nov 2013
1 answer
93 views
We use a custom skin but are trying to work away from that some what since we dont have a full time designer any longer. I seem to keep having issues with controls that are inside other controls. 

Today I have a RadComboBox inside of a RadScheduler. I'm using inside of the schedulers InlineInsertTemplate (image below).
Can anyone give me any suggestion on how to correct the problem?

Thanks!!
Nencho
Telerik team
 answered on 21 Nov 2013
6 answers
309 views

We have a menu system that is being developed for our primary websites.  I have been unsuccessful in my attempts to implement it into an internal site.  Thus I have decided to try and use the RadMenu.  From the attached screenshots you can see that I almost have this and can't get the remainder figured out. 

GoodMenu.png and SelectedMenu.png is my end goal of what I am trying to get too. 
RadMenu.png is what I currently have. 

How can I achieve the following?
1. On hover of the top level I am unable to get it to change from the radiant purple to the green. 
2. Also is there anyway to change the text color on the top level from white to green when the user is in that section.  ie. if user hovers over "Data Submission", it will turn the background color green (#6d9c1f).  If they click "Data Submission" or any of the links below it, the font color would turn from white to green. 
3. Reduce the size of the boarder around the sub-menu's? 


I tried using the Visual Style Builder but found it not to work as I had hoped.

Snippet of ASPX code

<telerik:RadMenu ID="RadMenu1" runat="server" Width="100%"
    EnableRoundedCorners="True" EnableShadows="True" EnableTextHTMLEncoding="True"
    style="z-index:2900" cssclass="RadMenu_ASI">
    <Items>
        <telerik:RadMenuItem runat="server" NavigateUrl="~/finStatement/default.aspx"
            Text="Data Submission">
            <Items>
                <telerik:RadMenuItem runat="server" NavigateUrl="~/finStatement/fsDefault.aspx"
                    Text="Add, Edit, or View Your Financial Statement">
                </telerik:RadMenuItem>
                <telerik:RadMenuItem runat="server"
                    NavigateUrl="~/finStatement/dataUpload.aspx?format=NCUA"
                    Text="Upload Form 5300">
                </telerik:RadMenuItem>
                <telerik:RadMenuItem runat="server"
                    NavigateUrl="~/finStatement/dataUpload.aspx?format=INS"
                    Text="Upload Excess Insured Accounts File">
                </telerik:RadMenuItem>
                <telerik:RadMenuItem runat="server"
                    NavigateUrl="~/finStatement/InsDescription.aspx"
                    Text="Excess Insured Account File Layout">
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenuItem>
        <telerik:RadMenuItem runat="server"
            NavigateUrl="~/premiumPayments/default.aspx" Text="Premium Payment System">
            <Items>
                <telerik:RadMenuItem runat="server"
                    NavigateUrl="~/premiumPayments/demo/SlideShow.aspx"
                    Text="Demo - Premium Payment System ">
                </telerik:RadMenuItem>
                <telerik:RadMenuItem runat="server" NavigateUrl="~/premiumPayments/pps.aspx"
                    Text="Premium Payment System Login ">
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenuItem>
    </Items>
     
</telerik:RadMenu>


Snippet of css

/* RAD MENU STYLE */
.RadMenu_ASI .rmRootGroup,.RadMenu_ASI a.rmLink,.RadMenu_ASI .rmGroup .rmText,.RadMenu_ASI .rmVertical .rmText,.RadMenu_ASI .rmLeftArrow,.RadMenu_ASI .rmRightArrow,.RadMenu_ASI .rmTopArrow,.RadMenu_ASI .rmBottomArrow{background-image:url('Menu/rmSprite.png');background-color:transparent}
.RadMenu_ASI .rmRootGroup{border:1px solid #828282;background-repeat:repeat-x;background-position:0 -408px;background-color:#e6e6e6}
.RadMenu_ASI,.RadMenu_ASI a.rmLink{font:normal 12px/23px "Segoe UI",Arial,sans-serif;color:#000;text-decoration:none}
.RadMenu_ASI a.rmLink,.RadMenu_ASI a.rmDisabled,.RadMenu_ASI a.rmDisabled:hover{background-position:0 -72px}
.RadMenu_ASI .rmFirst a.rmLink,.RadMenu_ASI .rmFirst a.rmLink:hover,.RadMenu_ASI .rmLast .rmText,.RadMenu_ASI .rmLast a.rmLink:hover .rmText,.RadMenu_ASI .rmVertical a.rmLink,.RadMenu_ASI .rmVertical .rmText{background-repeat:no-repeat;background-position:0 500px}
.RadMenu_ASI .rmVertical .rmFirst,.RadMenu_ASI .rmVertical .rmLast{background:0}
.RadMenu_ASI a.rmLink:hover,.RadMenu_ASI a.rmFocused,.RadMenu_ASI a.rmSelected{background-color:#fff}
.RadMenu_ASI .rmHorizontal .rmRootLink span.rmText{display:inline;padding-left:12px}
.RadMenu_ASI_rtl .rmRootLink span.rmText{padding-right:12px}
.RadMenu_ASI_Context_rtl .rmRootLink span.rmText{padding-right:28px}
.RadMenu_ASI .rmHorizontal a.rmRootLink{padding-left:0}
.RadMenu_ASI_rtl a.rmRootLink{margin-left:0;padding:0}
.RadMenu_ASI .rmHorizontal .rmItem>a.rmRootLink{width:100%}
.RadMenu_ASI ul.rmHorizontal .rmLeftImage{margin:4px -4px 0 6px}
.RadMenu_ASI_rtl ul.rmHorizontal .rmLeftImage{margin:4px 6px 0 -4px}
.RadMenu_ASI .rmVertical a.rmLink{padding-top:1px;padding-bottom:1px}
.RadMenu_ASI .rmVertical a.rmLink:hover,.RadMenu_ASI .rmVertical a.rmFocused,.RadMenu_ASI .rmVertical a.rmSelected,.RadMenu_ASI .rmVertical a.rmExpanded,.RadMenu_ASI .rmVertical a.rmExpanded:hover{padding-top:0;padding-bottom:0;border-style:solid;border-color:#828282;border-width:1px 0}
.RadMenu_ASI .rmVertical .rmFirst a.rmLink:hover,.RadMenu_ASI .rmVertical .rmFirst a.rmFocused,.RadMenu_ASI .rmVertical .rmFirst a.rmSelected,.RadMenu_ASI .rmVertical .rmFirst a.rmExpanded,.RadMenu_ASI .rmVertical .rmFirst a.rmExpanded:hover{padding-top:1px;padding-bottom:0;border-top-width:0}.RadMenu_ASI .rmVertical .rmLast a.rmLink:hover,.RadMenu_ASI .rmVertical .rmLast a.rmFocused,.RadMenu_ASI .rmVertical .rmLast a.rmSelected,.RadMenu_ASI .rmVertical .rmLast a.rmExpanded,.RadMenu_ASI .rmVertical .rmLast a.rmExpanded:hover{padding-bottom:1px;padding-top:0;border-bottom-width:0}.RadMenu_ASI .rmVertical .rmItem a.rmDisabled:hover{padding-top:1px;padding-bottom:1px;border-width:0}.RadMenu_ASI a.rmExpanded,.RadMenu_ASI a.rmExpanded:hover{background-color:#fff}.RadMenu_ASI a.rmDisabled,.RadMenu_ASI a.rmDisabled:hover{color:#7d7d7d;background-color:transparent}.RadMenu_ASI .rmGroup,.RadMenu_ASI .rmMultiColumn,.RadMenu_ASI .rmGroup .rmVertical{border:1px solid #979797;background:white url('Menu/rmVSprite.png') repeat-y 0 0}.RadMenu_ASI .rmTopFix,.RadMenu_ASI .rmBottomFix,.RadMenu_ASI .rmRoundedCorners .rmGroup .rmItem,.RadMenu_ASI .rmRoundedCorners li.rmFirstGroupColumn .rmItem,.RadMenu_ASI .rmRoundedCorners .rmFirstGroupColumn li.rmFirstGroupColumn .rmItem,.RadMenu_ASI .rmRoundedCorners ul.rmHorizontal .rmFirst,.RadMenu_ASI_Context.rmRoundedCorners .rmGroup .rmItem,.RadMenu_ASI_Context.rmRoundedCorners ul.rmHorizontal .rmFirst{background-image:url('Menu/rmVSprite.png');background-color:#fff;background-repeat:repeat-y}* html .rmRoundedCorners_ASI .rmGroup .rmItem,* html .rmRoundedCorners_ASI ul.rmHorizontal .rmFirst{background-image:url('Menu/rmVSprite.png');background-color:#fff;background-repeat:repeat-y}.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmGroup,.RadMenu_ASI .rmRoundedCorners .rmScrollWrap .rmItem,.RadMenu_ASI .rmRoundedCorners .rmGroupColumn .rmItem,.RadMenu_ASI .rmRoundedCorners .rmGroupColumn .rmGroupColumn .rmItem,.RadMenu_ASI .rmRoundedCorners .rmHorizontal .rmItem,.RadMenu_ASI .rmRoundedCorners .rmScrollWrap .rmVertical,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmGroup,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrap .rmItem,.RadMenu_ASI_Context.rmRoundedCorners .rmHorizontal .rmItem,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrap .rmVertical{background-image:none}* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmGroup,* html .rmRoundedCorners_ASI .rmScrollWrap .rmItem,* html .rmRoundedCorners_ASI .rmHorizontal .rmItem,* html .rmRoundedCorners_ASI .rmScrollWrap .rmVertical{background-image:none}.RadMenu_ASI .rmRoundedCorners .rmGroupColumn{background-color:#fff}.RadMenu_ASI .rmBottomLeft,.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer,.RadMenu_ASI_Context.rmRoundedCorners ul.rmGroup,.RadMenu_ASI .rmRoundedCorners ul.rmGroup,.RadMenu_ASI .rmRoundedCorners .rmMultiColumn{background-image:url('Menu/rmRoundedLeft.png');background-color:transparent;background-repeat:no-repeat}* html .rmRoundedCorners_ASI .rmScrollWrapContainer,* html .rmRoundedCorners_ASI .rmGroup ul.rmGroup,* html .rmRoundedCorners_ASI ul.rmGroup{background-image:url('Menu/rmRoundedLeft.png');background-color:transparent;background-repeat:no-repeat}.RadMenu_ASI .rmTopRight,.RadMenu_ASI .rmBottomRight{background-image:url('Menu/rmRoundedRight.png');background-color:transparent;background-repeat:no-repeat}.RadMenu_ASI .rmTopFix,.RadMenu_ASI .rmBottomFix,.RadMenu_ASI .rmRoundedCorners .rmGroup .rmFirst,.RadMenu_ASI_Context.rmRoundedCorners .rmGroup .rmFirst,.rmRoundedCorners_ASI .rmGroup .rmFirst{border-color:#979797}.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmTopFix,.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmBottomFix,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmTopFix,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmBottomFix{background:#FFF}* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmTopFix,* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmBottomFix{background:#FFF}.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmTopArrow,.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmBottomArrow,.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmLeftArrow,.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer .rmRightArrow,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmTopArrow,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmBottomArrow,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmLeftArrow,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer .rmRightArrow{background-color:#FFF;border:0}* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmTopArrow,* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmBottomArrow,* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmLeftArrow,* html .rmRoundedCorners_ASI .rmScrollWrapContainer .rmRightArrow{background-color:#FFF;border:0}.RadMenu_ASI_rtl .rmBottomLeft,.RadMenu_ASI_rtl .rmRoundedCorners ul.rmGroup,.RadMenu_ASI_rtl .rmRoundedCorners .rmMultiColumn,.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer,.RadMenu_ASI .rmScrollWrapContainer .rmBottomLeft,.rmRoundedCorners.RadMenu_ASI_Context_rtl ul.rmGroup,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer{background-image:url('Menu/rmRoundedLeft_rtl.png')}.RadMenu_ASI_rtl .rmTopRight,.RadMenu_ASI_rtl .rmBottomRight{background-image:url('Menu/rmRoundedRight_rtl.png')}.RadMenu_ASI_rtl li.rmTopFix,.RadMenu_ASI_rtl li.rmBottomFix,.RadMenu_ASI_rtl .rmRoundedCorners .rmGroup .rmItem,.rmRoundedCorners.RadMenu_ASI_Context_rtl .rmGroup .rmItem{background-position:101% 0}.RadMenu_ASI .rmSlide .rmScrollWrap{background-image:none}.RadMenu_ASI_rtl .rmGroup,.RadMenu_ASI_rtl .rmMultiColumn,.RadMenu_ASI_rtl .rmGroup .rmVertical{background-position:100% 0}.RadMenu_ASI .rmRootGroup li.rmItem .rmGroup{padding-bottom:0}.RadMenu_ASI .rmRootGroup .rmHorizontal{background-image:none}.RadMenu_ASI .rmScrollWrap .rmVertical{border:0}.RadMenu_ASI .rmRoundedCorners .rmScrollWrapContainer li.rmItem,.RadMenu_ASI_Context.rmRoundedCorners .rmScrollWrapContainer li.rmItem,.rmRoundedCorners_ASI .rmScrollWrapContainer li.rmItem{background:0}.RadMenu_ASI .rmGroup .rmItem a.rmLink,.RadMenu_ASI .rmGroup .rmItem a.rmLink:hover,.RadMenu_ASI .rmGroup .rmItem a.rmFocused,.RadMenu_ASI .rmGroup .rmItem a.rmSelected,.RadMenu_ASI .rmGroup .rmItem a.rmExpanded{padding-top:0;padding-bottom:0;border:0}.RadMenu_ASI .rmGroup .rmLast a.rmLink,.RadMenu_ASI .rmGroup .rmLast a.rmLink:hover,.RadMenu_ASI .rmGroup .rmLast a.rmFocused,.RadMenu_ASI .rmGroup .rmLast a.rmSelected,.RadMenu_ASI .rmGroup .rmLast a.rmExpanded{padding-bottom:1px}.RadMenu_ASI .rmGroup a.rmLink,.RadMenu_ASI .rmGroup .rmText,.RadMenu_ASI .rmGroup .rmItem a.rmDisabled,.RadMenu_ASI .rmGroup .rmItem a.rmDisabled:hover,.RadMenu_ASI .rmGroup .rmItem a.rmDisabled .rmText,.RadMenu_ASI .rmGroup .rmItem a.rmDisabled:hover .rmText{background-position:0 500px;background-repeat:no-repeat;background-color:transparent}.RadMenu_ASI .rmGroup a.rmLink:hover,.RadMenu_ASI .rmGroup a.rmFocused,.RadMenu_ASI .rmGroup a.rmSelected,.RadMenu_ASI .rmGroup a.rmExpanded{background-position:0 -168px}.RadMenu_ASI .rmGroup a.rmLink:hover .rmText,.RadMenu_ASI .rmGroup a.rmFocused .rmText,.RadMenu_ASI .rmGroup a.rmSelected .rmText,.RadMenu_ASI .rmGroup a.rmExpanded .rmText{background-position:100% -192px}.RadMenu_ASI .rmRootGroup .rmExpandRight,.RadMenu_ASI .rmGroup .rmExpandDown,.RadMenu_ASI_Context .rmGroup .rmExpandRight,.RadMenu_ASI .rmRootGroup .rmItem a.rmDisabled .rmExpandRight,.RadMenu_ASI .rmGroup .rmItem a.rmDisabled .rmExpandDown,.RadMenu_ASI .rmRootGroup .rmItem a.rmDisabled:hover .rmExpandRight,.RadMenu_ASI .rmGroup .rmItem a.rmDisabled:hover .rmExpandDown{background-position:100% -216px}.RadMenu_ASI a.rmLink:hover .rmExpandRight,.RadMenu_ASI .rmLast a.rmLink:hover .rmExpandRight,.RadMenu_ASI a.rmFocused .rmExpandRight,.RadMenu_ASI a.rmSelected .rmExpandRight,.RadMenu_ASI a.rmExpanded .rmExpandRight{background-position:100% -312px}.RadMenu_ASI .rmGroup a.rmLink:hover .rmExpandRight,.RadMenu_ASI .rmGroup a.rmFocused .rmExpandRight,.RadMenu_ASI .rmGroup a.rmSelected .rmExpandRight,.RadMenu_ASI .rmGroup a.rmExpanded .rmExpandRight,.RadMenu_ASI .rmGroup a.rmLink:hover .rmExpandDown,.RadMenu_ASI .rmGroup a.rmFocused .rmExpandDown,.RadMenu_ASI .rmGroup a.rmSelected .rmExpandDown,.RadMenu_ASI .rmGroup a.rmExpanded .rmExpandDown{background-position:100% -240px}.RadMenu_ASI .rmRootGroup a.rmDisabled:hover .rmExpandRight,.RadMenu_ASI .rmGroup a.rmDisabled:hover .rmExpandDown{background-image:url('Menu/rmSprite.png');background-position:100% -216px}.RadMenu_ASI_rtl a.rmLink,.RadMenu_ASI_rtl .rmRootGroup a.rmDisabled{background-position:100% -96px}.RadMenu_ASI_rtl .rmGroup a.rmDisabled{background:0}.RadMenu_ASI_rtl .rmText{background-position:0 -96px}.RadMenu_ASI_rtl .rmVertical a.rmExpanded .rmText,.RadMenu_ASI_rtl .rmVertical a.rmExpanded:hover .rmText{background-position:0 500px;background-repeat:no-repeat}.RadMenu_ASI_rtl .rmGroup a.rmLink:hover,.RadMenu_ASI_rtl .rmGroup a.rmFocused,.RadMenu_ASI_rtl .rmGroup a.rmSelected,.RadMenu_ASI_rtl .rmGroup a.rmExpanded{background-position:100% -264px}.RadMenu_ASI_rtl .rmGroup a.rmLink:hover .rmText,.RadMenu_ASI_rtl .rmGroup a.rmFocused .rmText,.RadMenu_ASI_rtl .rmGroup a.rmSelected .rmText,.RadMenu_ASI_rtl .rmGroup a.rmExpanded .rmText{background-position:0 -288px}.RadMenu_ASI_Context_rtl .rmVertical .rmExpandLeft,.RadMenu_ASI_rtl .rmRootGroup .rmExpandLeft{background-position:0 -312px}.RadMenu_ASI_rtl .rmVertical a.rmLink:hover .rmExpandLeft,.RadMenu_ASI_rtl .rmVertical a.rmFocused .rmExpandLeft,.RadMenu_ASI_rtl .rmVertical a.rmSelected .rmExpandLeft,.RadMenu_ASI_rtl .rmVertical a.rmExpanded .rmExpandLeft{background-position:0 -216px}.RadMenu_ASI_rtl .rmGroup a.rmLink:hover .rmExpandLeft,.RadMenu_ASI_rtl .rmGroup a.rmFocused .rmExpandLeft,.RadMenu_ASI_rtl .rmGroup a.rmSelected .rmExpandLeft,.RadMenu_ASI_rtl .rmGroup a.rmExpanded .rmExpandLeft{background-position:0 -336px}.RadMenu_ASI_rtl .rmRootGroup a.rmDisabled:hover .rmExpandLeft{background-position:0 -312px}.RadMenu_ASI .rmSlide{margin:0 0 0 -1px}.RadMenu_ASI .rmVertical .rmSlide,.RadMenu_ASI .rmSlide .rmSlide,.RadMenu_ASI_Context .rmGroup .rmSlide{margin:0 0 0 -5px}.RadMenu_ASI_rtl .rmSlide{margin:0}.RadMenu_ASI_rtl .rmFirst .rmSlide{margin-left:1px}.RadMenu_ASI_rtl .rmVertical .rmSlide,.RadMenu_ASI_rtl .rmSlide .rmSlide,.RadMenu_ASI_Context_rtl .rmGroup .rmSlide{margin:0 0 0 5px}.RadMenu_ASI .rmLeftArrow,.RadMenu_ASI .rmRightArrow{background-color:#E6E6E6}.RadMenu_ASI .rmLeftArrow{background-position:-8px -312px;border-right:1px solid #828282}.RadMenu_ASI .rmRightArrow{background-position:-482px -216px;border-left:1px solid #828282}.RadMenu_ASI .rmTopArrow,.RadMenu_ASI .rmBottomArrow,.RadMenu_ASI .rmGroup .rmLeftArrow,.RadMenu_ASI .rmGroup .rmRightArrow{background-color:#E6E6E6}.RadMenu_ASI .rmTopArrow{background-position:50% -367px;border-bottom:1px solid #828282}.RadMenu_ASI .rmBottomArrow{background-position:50% -391px;border-top:1px solid #828282}.RadMenu_ASI .rmHorizontal .rmSeparator .rmText,.RadMenu_ASI .rmVertical .rmHorizontal .rmSeparator .rmText{height:22px;margin:1px 0 0;width:1px;background-color:#A8A8A8}
.RadMenu_ASI_Context .rmSeparator .rmText,.RadMenu_ASI .rmHorizontal .rmGroup .rmSeparator .rmText,.RadMenu_ASI .rmVertical .rmHorizontal .rmGroup .rmSeparator .rmText{background-color:transparent;background-position:0 -406px}
 
 DIV.RadMenu_ASI .rmItem .rmLink {
    FONT-SIZE: 14px;
    font-family: Crete Round !important;
    BACKGROUND-IMAGE: none;
    /*BACKGROUND-POSITION: 0px 500px;*/
    FONT-WEIGHT: normal;
    COLOR: #FFFFFF;
    LINE-HEIGHT: 50px;
    BACKGROUND-COLOR: #001F45;
}
 
 DIV.RadMenu_ASI .rmItem .rmLink:hover {
    FONT-WEIGHT: bold;
}
 
 DIV.RadMenu_ASI .rmItem .rmLink:hover .rmText {
    BACKGROUND-IMAGE: none;
}
 
 DIV.RadMenu_ASI .rmItem .rmLink .rmExpandDown {
    FONT-WEIGHT: normal;
    /*BACKGROUND-COLOR: #6D9C1F;*/
    background: linear-gradient(to bottom, #290448 0%,#140224 44%,#040008 100%) !important ;
}
 
 DIV.RadMenu_ASI .rmItem .rmGroup {
    BACKGROUND-IMAGE: none;
}
 
 DIV.RadMenu_ASI .rmGroup .rmItem .rmLink {
    BACKGROUND-COLOR: #6D9C1F;
}
 
 DIV.RadMenu_ASI .rmGroup .rmItem .rmLink:hover {
    FONT-WEIGHT: bold;
    BACKGROUND-COLOR: #87AE47;
}
        
Kate
Telerik team
 answered on 21 Nov 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?