Completed
Last Updated: 07 Jun 2017 14:30 by ADMIN
ADMIN
Danail Vasilev
Created on: 28 Nov 2013 16:02
Category: Button
Type: Bug Report
0
FIX the compatibility of RadButton with custom image that contains special symbols in its name
The workaround is to override the background image of the button:

CSS:

    <style>
        .RadButton.RadButton_Default.rbLinkButton .rbPrimaryIcon {
            background-image: url("images/Groups (16x16).png");
        }
    </style>

ASPX:

       <telerik:RadButton ID="RadButton1" runat="server" ButtonType="LinkButton" Text="Click" Skin="Default">
            <Icon PrimaryIconUrl="images/myImage (16x16).png" PrimaryIconTop="2" PrimaryIconLeft="2" />
        </telerik:RadButton>
0 comments