Skip to main content
A newer version of this page is available. .

AutoCompleteBoxBaseSettings.ItemRowPrepared Property

Enables the settings of individual rows to be changed.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public EventHandler<ListBoxItemRowPreparedEventArgs> ItemRowPrepared { get; set; }

Property Value

Type Description
EventHandler<ListBoxItemRowPreparedEventArgs>

A EventHandler<TEventArgs><ListBoxItemRowPreparedEventArgs,> delegate method allowing you to implement custom processing.

Remarks

Use the ItemRowPrepared event to change individual rows’ style settings (CssClass, Tooltip, control styles). The ItemRowPrepared event is raised for each row within the editor’s list.

The processed row is identified by the ListBoxItemRowPreparedEventArgs.Row property.

See Also