Hello all. This is embarrasing since ths seems like the most self-explanatory property ever - but for some reason I cannot get it to work. The DisabledImageUrl does not display when I disable the menu item. Instead it displays the ImageUrl image.
The menu item is, in fact, disabled: when hovering over the disabled item the homer image does not display and when clicked it will not navigate to the page.
Here is my code. The first two menu items function normally, with the hover image displaying correctly and navigating properly when clicked. The third menu item is disabled and shows the regular imageurl image.
Thanks-
Christine
The menu item is, in fact, disabled: when hovering over the disabled item the homer image does not display and when clicked it will not navigate to the page.
Here is my code. The first two menu items function normally, with the hover image displaying correctly and navigating properly when clicked. The third menu item is disabled and shows the regular imageurl image.
<telerik:RadMenu ID="mnuMain1" runat="server" BackColor="White" BorderColor="White" Skin=""> |
<CollapseAnimation Duration="200" Type="OutQuint" /> |
<Items> |
<telerik:RadMenuItem runat="server" ImageUrl="~/Images/btn1Up.jpg" |
DisabledImageUrl="~/Images/btn1Disabled.jpg" |
HoveredImageUrl="~/Images/btn1Down.jpg" |
ForeColor="#F7A02D" Width="160px" NavigateUrl="~/Page1.aspx"> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem runat="server" ImageUrl="~/Images/btn2Up.jpg" |
DisabledImageUrl="~/Images/btn2Disabled.jpg" |
HoveredImageUrl="~/Images/btn2Down.jpg" |
ForeColor="#F7A02D" Width="160px" NavigateUrl="~/Page2.aspx"> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem runat="server" ImageUrl="~/Images/btn3Up.jpg" Enabled="false" |
DisabledImageUrl="~/Images/btn3Disabled.jpg" |
HoveredImageUrl="~/Images/btn3Down.jpg" |
ForeColor="#F7A02D" Width="160px" NavigateUrl="~/Page3.aspx"> |
</telerik:RadMenuItem> |
</Items> |
</telerik:RadMenu> |
Thanks-
Christine