how-tos made with markdown snippet injector

This commit is contained in:
Nikolay Iliev
2016-04-14 15:20:35 +03:00
parent 5ceeb7fddd
commit 89fad4f41c
43 changed files with 1207 additions and 1116 deletions

View File

@@ -0,0 +1,22 @@
---
nav-title: "virtual-array How-To"
title: "How-To"
description: "Examples for using virtual-array"
---
# Virtual Array module
<snippet id='virtual-array-require'/>
### Handle "itemsLoading" event to load items on demand using load() method.
Use "length" property set via VirtualArray constructor to specify total number of items,
"loadSize" to specify number of items to be requested in a single request,
"itemsLoading" event to handle items request and "load()" method to copy items into the array.
All already loaded items are cached in -memory and when "getItem()" method is called
the array will raise "itemsLoading" event for still not loaded items.
<snippet id='virtual-array-itemsloading'/>
### Handle "change" event when you load items using load() method.
<snippet id='virtual-array-change'/>
### Handle "change" event when you increase "length" property.
<snippet id='virtual-array-lenght'/>