Skip to content

Detailed List

The detailed list is a list consisting of items from the avatar, primary text, secondary text, and supporting text. It is effective for use in applications with small space requirements, such as mobile applications.

Property

NoItemInput ValueDefault ValueAction PropertyTypeAction Default ValueDescription
1IDStringAuto-generatedidstringAuto-generatedThe [id] property cannot be set by actions.
2WidthNumber390widthnumber390Component width
3HeightNumber200heightnumber200Component height
4XNumberxnumberX coordinate position
5YNumberynumberY coordinate position
6LockBooleanOFFlockbooleanfalseWhen ON, the component stays fixed even when the screen is scrolled.
When OFF, the component moves along with the screen scroll.
Added in v4.1.0.
7Background ColorStringbackgroundColorstringDetailed list background color. Added in v3.4.0.
8VisibilityBooleanONvisibilitybooleantrueComponent show/hide
9Show Default Avatar If EmptyBooleanONshowAvatarIfEmptybooleantrueWhen ON, a default avatar is displayed when the value is empty.
When OFF, text is displayed left-aligned when the value is empty.
10Cache DisabledBooleanOFFcacheDisabledbooleanfalseCache usage state for avatar image
Added in v4.1.0.
11ValueString[Details 1]valuearray of object[Details 1]Detailed list value
12Click EventSelection
1.None
2.Action
3. Detached Action
ActionEvent setting for click
Detached Action became selectable in v4.1.0.
13Detached ActionSelection
1. [Detached Action ID]
detachedActionstringSet a detached action
Added in v4.1.0.

[Details 1] Value

The default status is registered as follows. Register from the "Add" button. To delete, select the check box and click the "Delete" button.

SelectIDAvatarPrimarySecondarySupportDivider
Checkboxitem1https://template-ui-image.webperformer.jp/image/Avatar.pngBrunch this weekend?Ali Connors— I will be in your neighborhood doing errands this…inset
Checkboxitem2https://template-ui-image.webperformer.jp/image/Avatar.pngSummer BBQto Scott, Alex, Jennifer— Wish I could come, but Im out of town this…inset

"value" is in the form of an array of objects.

[
{
"id": "item1",
"avatar": "https://template-ui-image.webperformer.jp/image/Avatar.png",
"primary": "Brunch this weekend?",
"secondary": "Ali Connors",
"supporting": " — I will be in your neighborhood doing errands this…",
"divider": "inset"
},
{
"id": "item2",
"avatar": "https://template-ui-image.webperformer.jp/image/Avatar.png",
"primary": "Summer BBQ",
"secondary": "to Scott, Alex, Jennifer",
"supporting": " — Wish I could come, but Im out of town this…",
"divider": "inset"
}
]

Event

Event nameDescription
onclickPerforms an action when clicked.

The "selected" property allows you to retrieve the object in the row you clicked on.

ItemExample
Acquisition method$ui.detailed_list_id.selected
Obtained value{“id”:“item1”,“avatar”:“/xxx/xxx/xxx.png”,“primary”:“xxx”,“secondary”:“xxx”,“supporting”:“xxx”,“divider”:“inset”}