-
Notifications
You must be signed in to change notification settings - Fork 19
6m. Cell: EditableList
i_82 edited this page May 24, 2018
·
4 revisions
EditableList cell is a plain cell with disclosure indicator. It navigates user to a XUI editable list pane or editing pane. Users can create, edit, move, or delete string items in it.
| Key | Type | Description | Flags | Default |
|---|---|---|---|---|
| maxCount | Number | maximum string item limit | Optional | INT_MAX |
| footerText | String | footer text in the list pane | Optional, Localizable | "" |
| itemFooterText | String | footer text in the editing pane | Optional, Localizable | "" |
| validationRegex | String | regular expression for value validation | Optional | nil |
theme Key |
Type | Description |
|---|---|---|
| textColor | color | text color of string item |
| caretColor | color | caret color of the textField in the editing pane
|
| placeholderColor | color | placeholder color of the textField in the editing pane
|
value Type |
Description |
|---|---|
| Array | array of string items |
{
"maxCount": 10,
"cell": "EditableList",
"label": "Editable List",
"key": "list-4",
"default": [
"Default"
]
}