v-ons-list-item

Component that represents each item in a list. The list item is composed of four parts that are represented with the left, center, right and expandable-content classes. These classes can be used to ensure that the content of the list items is properly aligned.

  <ons-list-item>
    <div class="left">Left</div>
    <div class="center">Center</div>
    <div class="right">Right</div>
    <div class="expandable-content">Expandable content</div>
  </ons-list-item>

There are also a number of classes (prefixed with list-item__*) that help when putting things like icons and thumbnails into the list items.

Tutorial

Lists

Creating lists in Onsen UI is very simple and they are one of the most important UI components in mobile apps.

Onsen UI provides four elements for creating lists:

  • <v-ons-list>
  • <v-ons-list-item>
  • <v-ons-list-header>
  • <v-ons-list-title>

Markup

The <v-ons-list> is used as the parent and for every item one <v-ons-list-item> element is used:

<v-ons-list>
  <v-ons-list-item>Item A</v-ons-list-item>
  <v-ons-list-item>Item B</v-ons-list-item>
  <v-ons-list-item>Item C</v-ons-list-item>
</v-ons-list>

This will render as a list with three items.

Headers and titles

To group items together you can use the <v-ons-list-header> element to create a header with text content. The whole list can be preceded by a <v-ons-list-title> element.

<v-ons-list-title>People I know</v-ons-list-title>
<v-ons-list>
  <v-ons-list-header>My friends</v-ons-list-header>
  <v-ons-list-item>Alice</v-ons-list-item>
  <v-ons-list-item>Bob</v-ons-list-item>
  <v-ons-list-item>Eve</v-ons-list-item>

  <v-ons-list-header>My enemies</v-ons-list-header>
  <v-ons-list-item>Alice</v-ons-list-item>
  <v-ons-list-item>Bob</v-ons-list-item>
  <v-ons-list-item>Eve</v-ons-list-item>
</v-ons-list>

You can use as many headers as you want in the same list.

List item structure

In the previous examples the list items only contained simple text content. Onsen UI list items provide a secondary syntax where the list item is divided into four sections.

This can be used to add icons, thumbnails or even form elements to your list items:

<v-ons-list-item>
  <div class="left">
    <v-ons-icon icon="md-face" class="list-item__icon"></v-ons-icon>
  </div>
  <div class="center">
    Icon and switch
  </div>
  <div class="right">
    <v-ons-switch></v-ons-switch>
  </div>
  <div class="expandable-content">
    Expandable content
  </div>
</v-ons-list-item>

Notice that the inner structure does not need to be made with div elements. It can be any element such as a label.

Apart from this, some extra classes are provided to style different parts of the list items:

  • list-item__title: Title inside the central part. Modifies font and position.
  • list-item__subtitle: Subtitle inside the central part. Modifies font and position.
  • list-item__icon: List item icon. Modifies size and alignment.
  • list-item__thumbnail: List item thumbnail. Modifies size, borders and alignment.
<v-ons-list-item>
  <div class="left">
    <img class="list-item__thumbnail" src="https://placekitten.com/g/40/40">
  </div>
  <div class="center">
    <span class="list-item__title">Cutest kitty</span>
    <span class="list-item__subtitle">On the Internet</span>
  </div>
</v-ons-list-item>

Expandable list items

You can create list items that expand to reveal extra content when tapped by setting the expandable prop. The content that is shown when the list item is expanded is defined in a div.expandable-content.

<v-ons-list-item expandable>
  Tap to expand
  <div class="expandable-content">This is shown when expanded</div>
</v-ons-list-item>

If div.right is not defined, a dropdown arrow is automatically added to the right side of the expandable list item.

The list item can also be expanded and contracted by setting the value of expanded. This also works with v-model:expanded.

The tappable attribute

The tappable attribute is used to give the user an indication when they tap a list item. In iOS the background color will change when tapped and on Android it will display the Material Design ripple effect.

<v-ons-list-item tappable>Tap me!</v-ons-list-item>

This is very useful in apps that perform some action or navigate to a new page when a list item is tapped.

In order to prevent tappable effect when tapping on specific child elements like custom buttons, prevent-tap attribute can be added to any of the children. v-ons-* elements like v-ons-button or v-ons-checkbox are ignored by default.

Modifiers

There are several modifiers that can be used to customize the look of lists and list items.

In Onsen UI modifiers are applied by adding the modifier attribute to an element. More than one can be added by separating them with spaces.

For example, to create an inset list you can use the inset modifier on the <ons-list> element:

<v-ons-list modifier="inset">
  ...
</v-ons-list>

Changing the divider

The longdivider and nodivider modifiers can be used to change the length or remove the divider (horizontal line) between list items completely. The default style for list items is a divider that doesn’t completely cover the whole screen. Instead it has some padding on the left to make it look more similar to native lists.

By adding the nodivider modifier the divider can be removed:

<v-ons-list>
  <v-ons-list-item modifier="nodivider">Item A</v-ons-list-item>
  <v-ons-list-item modifier="nodivider">Item B</v-ons-list-item>
</v-ons-list>

See also

Name Type Description
animation String The animation used when showing and hiding the expandable content. Can be either "default" or "none". Optional.
expandable Boolean Makes the element able to be expanded to reveal extra content. For this to work, the expandable content must be defined in div.expandable-content. Optional.
expanded Boolean For expandable list items, specifies whether the expandable content is expanded or not. Optional.
keepTapBackgroundColor Boolean Prevent from clearing the background color on "touchmove", "touchcancel", "touchend", "touchleave", "mouseup", and "mouseout". For this to work, the attribute “tappable” needs to be set. Optional.
lockOnDrag Boolean Prevent vertical scrolling when the user drags horizontally. Optional.
modifier String The appearance of the list item. Optional.
tapBackgroundColor Color Changes the background color when tapped. For this to work, the attribute “tappable” needs to be set. The default color is “#d9d9d9”. It will display as a ripple effect on Android. Optional.
tappable Boolean Makes the element react to taps. prevent-tap attribute can be added to child elements like buttons or inputs to prevent this effect. ons-* elements are ignored by default. Optional.
Name Description
tappable Make the list item change appearance when it’s tapped. On iOS it is better to use the “tappable” and “tap-background-color” attribute for better behavior when scrolling.
chevron Display a chevron at the right end of the list item and make it change appearance when tapped.
longdivider Displays a long horizontal divider between items.
nodivider Removes the divider between list items.
material Display a Material Design list item.
Name Description
expand For expandable list items, fires when the list item is expanded or contracted.
update:expanded Same as expand event. For compatability with v-model.
expand

For expandable list items, fires when the list item is expanded or contracted.

Parameters
Name Type Description
update:expanded

Same as expand event. For compatability with v-model.

Parameters
Name Type Description

Need Help?

If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.

For bug reports and feature requests use our GitHub Issues page.