Click or drag to resize
KaxComboBoxOnClientDropDownClosed Property
The client-side event that is fired after the dropdown of the combobox is closed.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string OnClientDropDownClosed { 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 can not be cancelled
Examples
[New Example]
<script language="javascript">                

function HandleClose(sender, args) 
{  
        alert("Closed combobox with " + sender.get_items().get_count() + " items"); 

} 

</script> 


<kettic:kaxcombobox  
      id="KaxComboBox1"  
      Runat="server"  
      OnClientDropDownClosed="HandleClose"> 
</kettic:kaxcombobox>
See Also