Click or drag to resize
KaxComboBoxExpandDelay Property
Gets or sets a value indicating the timeout after which a dropdown starts to open.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public int ExpandDelay { get; set; }

Property Value

Type: Int32
An integer specifying the timeout measured in milliseconds. The default value is 100 milliseconds.
Remarks

Use the ExpandDelay property to delay dropdown opening.

To customize the timeout prior to item closing use the CollapseDelay property.

Examples

The following example demonstrates how to specify a half second (500 milliseconds) timeout prior to dropdown opening:

ASPX:

<kettic:KaxComboBox ID="KaxComboBox1" runat="server" ExpandDelay="500" />

See Also