You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/dropdownlist/events.md
+54Lines changed: 54 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ This article explains the events available in the Telerik DropDownList for Blazo
15
15
*[OnChange](#onchange)
16
16
*[ValueChanged](#valuechanged)
17
17
*[OnRead](#onread)
18
+
*[OnItemRender](#onitemrender)
18
19
*[OnBlur](#onblur)
19
20
20
21
The examples in this article use `string` values and simple data sources for brevity. You can use full models, see the [data binding]({%slug components/dropdownlist/databind%}) article for more details.
@@ -225,6 +226,59 @@ You can also call remote data through `async` operations.
225
226
}
226
227
````
227
228
229
+
## OnItemRender
230
+
231
+
The `OnItemRender` event fires when each item in the DropDownList popup renders.
232
+
233
+
The event handler receives as an argument an `DropDownListItemRenderEventArgs<TItem>` object that contains:
0 commit comments