From 6694b35ee4efa6029216bf805fc1b850c05638d2 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sat, 26 Apr 2014 01:09:18 -0500 Subject: [PATCH] add getItem and getItemIndex to docs. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f664071..bef35d2 100644 --- a/README.md +++ b/README.md @@ -561,6 +561,10 @@ A scrollable list which can display selectable items. - inherits all from Box. - **add/addItem(text)** - add an item based on a string. +- **getItemIndex(child)** - returns the item index from the list. child can be + an element, index, or string. +- **getItem(child)** - returns the item element. child can be an element, + index, or string. - **removeItem(child)** - removes an item from the list. child can be an element, index, or string. - **clearItems()** - clears all items from the list.