KaxComboBoxOnClientDropDownOpened Property |
The client-side event that is fired after the dropdown of the combobox is
opened.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string OnClientDropDownOpened { get; set; }
Public Property OnClientDropDownOpened As String
Get
Set
public:
property String^ OnClientDropDownOpened {
String^ get ();
void set (String^ value);
}
member OnClientDropDownOpened : string with get, set
Property Value
Type:
String
Remarks
The event handler receives two parameter: the instance of the combobox
client-side object and event args. The event cannot be cancelled.
Examples<script language="javascript">
function HandleOpen(sender,args)
{
alert("Opening combobox with " + comboBox.get_items().get_count() + " items");
}
</script>
<kettic:kaxcombobox
id="KaxComboBox1"
Runat="server"
OnClientDropDownOpened="HandleOpen">
</kettic:kaxcombobox>
See Also