or
Dear Support,
I've issue with the image button. The button image blinks when the user hover over the Button, then when the user move out from the button the image appears again.
Please find the attached images.
Here is my markup code for the button.
<rad:RadButton ID="btnAccountStatusHistory" runat="server" Text="Status History" OnClientClicking="OnAccountStatusHistoryClientClicking"> <Icon PrimaryIconUrl="~/_Images/ButtonsIcons/History.gif" PrimaryIconLeft="4" PrimaryIconTop="4" /></rad:RadButton>| var combobox = new RadComboBox |
| { |
| WebServiceSettings = { Path = "~/Services/MyWebService.asmx", Method = "LoadDropDown" }, |
| EnableLoadOnDemand = true, |
| MarkFirstMatch = true, |
| AllowCustomText = true, |
| ShowDropDownOnTextboxClick = false, |
| ID = "rcb", |
| MaxLength = 255, |
| EnableEmbeddedSkins = false |
| }; |
| <httpHandlers> |
| <remove path="*.asmx" verb="*" /> |
| <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> |
| etc... |
| namespace MyWebsite.Services |
| { |
| [WebService] |
| [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] |
| [ToolboxItem(false)] |
| [ScriptService] |
| public class MyWebService : WebService |
| { |
| [WebMethod] |
| public RadComboBoxItemData[] LoadDropDown(object context) |
| { |
| var currentData = (IDictionary<string, object>)context; |
| var currentText = (string)currentData["Text"]; |
| var result = new List<RadComboBoxItemData>(); |
| etc. |
| etc. |
| return result.ToArray(); |
| } |
| } |
| } |