mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
chore: update tslint rules (#7391)
This commit is contained in:
@@ -42,12 +42,12 @@ export var test_VirtualArray_setItemShouldRaiseChangeEventWhenYouSetDifferentIte
|
||||
// args.index is start index of the page where the requested index is located.
|
||||
// args.count number of requested items.
|
||||
//
|
||||
// Note: Virtual array will divide total number of items to pages using "loadSize" property value. When you request an
|
||||
// Note: Virtual array will divide total number of items to pages using "loadSize" property value. When you request an
|
||||
// item at specific index the array will raise "itemsLoading" event with "ItemsLoading" argument index set to the first index of the requested page
|
||||
// and count set to number of items in this page.
|
||||
// and count set to number of items in this page.
|
||||
//
|
||||
// Important: If you have already loaded items in the requested page the array will raise multiple times "itemsLoading" event to request
|
||||
// all ranges of still not loaded items in this page.
|
||||
// Important: If you have already loaded items in the requested page the array will raise multiple times "itemsLoading" event to request
|
||||
// all ranges of still not loaded items in this page.
|
||||
|
||||
var itemsToLoad = new Array<number>();
|
||||
for (var i = 0; i < args.count; i++) {
|
||||
|
||||
Reference in New Issue
Block a user