KaxComboBoxOnClientBlur Property |
The client-side event that is fired when when the combo loses focus
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string OnClientBlur { get; set; }
Public Property OnClientBlur As String
Get
Set
public:
property String^ OnClientBlur {
String^ get ();
void set (String^ value);
}
member OnClientBlur : 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.
Examples<script type="text/avascript">
function OnClientBlur(sender,args)
{
alert("blur");
}
</script>
<kettic:kaxcombobox
id="KaxComboBox1"
Runat="server"
OnClientBlur="OnClientBlur">
</kettic:kaxcombobox>
See Also