Hi
In RadComboBox OnClientDropDown event is worked in ie,chrome,firefox. But in opera its not working
Here is the sample code I have worked out.
In this sample I added OnClientDropdown in RadCombo
Its worked except Opera Browser.
In RadComboBox OnClientDropDown event is worked in ie,chrome,firefox. But in opera its not working
Here is the sample code I have worked out.
In this sample I added OnClientDropdown in RadCombo
Its worked except Opera Browser.
| <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="Test._Default" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml" > |
| <head runat="server"> |
| <title>Untitled Page</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <div> |
| <asp:ScriptManager ID="ScriptManager1" runat="server" /> |
| <telerik:RadComboBox ID="ddlTest" runat="server" > |
| </telerik:RadComboBox> |
| <telerik:RadComboBox ID="ddlTest1" runat="server" OnClientDropDownOpened ="test" > |
| </telerik:RadComboBox> |
| </div> |
| </form> |
| </body> |
| <script language="javascript" type="text/javascript" > |
| function test() |
| { |
| alert("Test"); |
| } |
| </script> |
| </html> |