Phone API Reference - UI Classes (Widgets) - List - get
Phone API Reference - UI Classes (Widgets) - List - get
get
Description
Retrieves contents of a specific cell in the list.
Basic Example:Â
var value = listObj.get(row, column); |
rows and columns begin at 0,0.
Parameters
Name | Required | Type | Default | Description |
---|---|---|---|---|
row | Yes | integer | Â | Row number of the cell. |
column | Yes | integer | Â | Column number of the cell. |
Examples
get the contents of row 1 column 1
list.get(1, 1); |
Â