I have a button placed on a pretty large page with a lot of controls and the icon/image does not render until I mouse over it. Here is the way the control is coded on the page:
I already know what you are going to say, "we could not recreate the problem on our end" I'm aware that this works if you place it on a form by it self. I can get it to work on simple form. The problem lies when this is placed on a form with a lot of other control. Is there a way to force a refresh on the button? Is there a style I should be setting? Should I not bother to set the URLs in the HTML and do it in the VB code behind?
<telerik:RadButton ID="RadButton1" runat="server" Text="Apply" Skin="Windows7" Width="150px" CssClass="ie7buttondist"> <Icon PrimaryIconUrl="~/Images/Apply14.gif" PrimaryIconWidth="14px" PrimaryIconHeight="14px" PrimaryIconLeft="20px" PrimaryPressedIconUrl="~/Images/Apply14.gif" PrimaryHoveredIconUrl="~/Images/Apply14.gif" /> </telerik:RadButton>I already know what you are going to say, "we could not recreate the problem on our end" I'm aware that this works if you place it on a form by it self. I can get it to work on simple form. The problem lies when this is placed on a form with a lot of other control. Is there a way to force a refresh on the button? Is there a style I should be setting? Should I not bother to set the URLs in the HTML and do it in the VB code behind?