Click or drag to resize
KaxComboBoxOnClientFocus Property
The client-side event that is fired when when the combo gains focus

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 OnClientFocus { get; set; }

Property Value

Type: String
Remarks
The event handler receives two parameter: the instance of the combobox client-side object and event args.
Examples
[New Example]
<script type="text/avascript">               

function OnClientFocus(sender,args)
{
    alert("focus");
}

</script>


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