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
@@ -188,6 +188,8 @@ When igxCombo is opened allow custom values are enabled and add item button is f
188
188
|`valueKey`| combo value data source property | string |
189
189
|`displayKey`| combo dispaly data source property | string |
190
190
|`groupKey`| combo item group | string |
191
+
|`virtualizationState`| defined he current state of the virtualized data. It contains `startIndex` and `chunkSize`|`IForOfState`|
192
+
|`totalItemCount`| total count of the virtual data items, when using remote service | number |
191
193
|`width `| defines combo width | string |
192
194
|`heigth`| defines combo height | string |
193
195
|`itemsMaxHeight `| defines drop down height | string |
@@ -206,6 +208,7 @@ When igxCombo is opened allow custom values are enabled and add item button is f
206
208
|`onSelectionChange`| Emitted when item selection is changing, before the selection completes | true | { oldSelection: `Array<any>`, newSelection: `Array<any>`, event: Event } |
207
209
|`onSearchInput`| Emitted when an the search input's input event is triggered | false | { searchValue: `string` } |
208
210
|`onAddition`| Emitted when an item is being added to the data collection | false | { oldCollection: `Array<any>`, addedItem: `<any>`, newCollection: `Array<any>` }|
211
+
|`onDataPreLoad`| Emitted when new chunk of data is loaded from the virtualization | false | { event: Event } |
209
212
|`dropDownOpening`| Emitted before the dropdown is opened | false | { event: Event } |
210
213
|`dropDownOpened`| Emitted after the dropdown is opened | false | { event: Event } |
211
214
|`dropDownClosing`| Emitted before the dropdown is closed | false | { event: Event } |
0 commit comments