KaxComboBoxItemCreated Event |
Occurs on the server when an item in the KaxComboBox control is
created.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic event KaxComboBoxItemEventHandler ItemCreated
Public Event ItemCreated As KaxComboBoxItemEventHandler
public:
event KaxComboBoxItemEventHandler^ ItemCreated {
void add (KaxComboBoxItemEventHandler^ value);
void remove (KaxComboBoxItemEventHandler^ value);
}
member ItemCreated : IEvent<KaxComboBoxItemEventHandler,
KaxComboBoxItemEventArgs>
Value
Type:
Kettic.AspNet.ControlsKaxComboBoxItemEventHandler
RemarksThe ItemCreated event is raised every time a new item is
added.
The ItemCreated event is not related to data binding and you
cannot retrieve the DataItem of the item in the event
handler.
The ItemCreated event is often useful in scenarios where you want
to initialize all items - for example setting the ToolTip of each
KaxComboBoxItem to be equal to the Text property.
See Also