Click or drag to resize
KaxListBoxItemDataBound Event
Occurs when item is data bound.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public event KaxListBoxItemEventHandler ItemDataBound

Value

Type: Kettic.AspNet.ControlsKaxListBoxItemEventHandler
Remarks
Use the ItemDataBound event to set additional properties of the databound items.
Examples
protected void KaxListBox1_ItemDataBound(object sender, KaxListBoxItemEventArgs e)
{
    e.Item.ToolTip = (string)DataBinder.Eval(e.Item.DataItem, "ToolTipColumn");
}
See Also