This is a migrated thread and some comments may be shown as answers.

Problem with item image in Chrome when clicked

1 Answer 26 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
Bob
Top achievements
Rank 1
Bob asked on 30 Apr 2014, 10:46 AM
Hi,

I'm trying to use RadPanelBar item with NavigateUrl.  When the page loads, the image displays correctly.  When I click on the item, the image is replaced momentarily by some other image (chrome missing image?).  Then the new page loads.  This doesn't happen in IE, the correct image is displayed even after clicking.  Here is the definition of the RadPanelBar:

      <telerik:RadPanelBar runat="server" ID="rpbMain" Height="100%" Width="100%" ExpandMode="SingleExpandedItem"
        BackColor="#E4E4E4">
        <Items>
          <telerik:RadPanelItem runat="server" ImageUrl="~/Images/Inputs.png" NavigateUrl="~/WebForm1.aspx"
            Text="Root RadPanelItem1">
          </telerik:RadPanelItem>
        </Items>
      </telerik:RadPanelBar>

I have attached an image which displays the behavior.  Chrome is up to date (34.0.1847.131m).  Telerik.Web.UI is at 2014.1.403.40.  VS2010, .NET 4.

Thanks.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 02 May 2014, 06:37 AM
Hi Bob,

As a work around please try to set the ExpandedImageUrl of RadPanelItem which works as expected for me. 

ASPX:
<telerik:RadPanelBar ID="radpnlbarNavigate" runat="server">
    <Items>
        <telerik:RadPanelItem Text="Item1" NavigateUrl="http://www.google.com" ExpandedImageUrl="Icon-small.jpg" ImageUrl="Icon-small.jpg">
        </telerik:RadPanelItem>
    </Items>
</telerik:RadPanelBar>

Thanks,
Princy.
Tags
PanelBar
Asked by
Bob
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or