Crestron Components Lib - Showcase App

ch5-list: endless

ch5-list: endless

Default false.

If false, continued swiping when reach end of list will reveal no entries beyond the last entry.

If true, the first entry of the list will virtually follow the last entry of list when reaching the end of the entries. Swiping towards the beginning of list entries will also review the last entry prior to the first entry.

<ch5-list id="demo-list-1"
           size="25"
           orientation="horizontal"
           indexId="idx"
           minWidth="250px"
           maxWidth="500px"
           minHeight="100px"
           maxHeight="150px"
           itemWidth="125px"
           itemHeight="75px"
           scrollbar="true"
           gestureable="true"
           pagedSwipe="true"
           endless="true">
    <template>
        <div class="horizontal-list-item">
            <span>item_{{idx}}</span>
        </div>
    </template>
</ch5-list>

ch5-list: endless

Default false.

If false, continued swiping when reach end of list will reveal no entries beyond the last entry.

If true, the first entry of the list will virtually follow the last entry of list when reaching the end of the entries. Swiping towards the beginning of list entries will also review the last entry prior to the first entry.


<ch5-list id="demo-list-2"
           size="50"
           orientation="vertical"
           indexId="idx"
           minWidth="150px"
           maxWidth="165px"
           minHeight="300px"
           maxHeight="550px"
           itemWidth="150px"
           itemHeight="75px"
           scrollbar="true"
           gestureable="true"
           pagedSwipe="true"
           endless="true">
    <template>
        <div class="vertical-list-item">
            <span>item_{{idx}}</span>
        </div>
    </template>
</ch5-list>