guide Scrolling

Scroll Indicator

리스트 컨트롤 상단이나 하단에 얇은 bar로 스크롤 상태를 표시한다. 행 단위의 스크롤 범위를 표시한다.

image-01

모델 클래스는 RtScrollIndicator이고. 컨트롤 RtListOptions.scrollIndicator 속성으로 지정한다.

list.setConfig({
    options: {
        scrollInidcator: {
            barWidth: 10
        },
    },
});

Scroll Bar

모델 클래스는 RtScrollBar이고. 컨트롤 RtListOptions.scrollBar 속성으로 지정한다.

list.setConfig({
    options: {
        scrollBar: {
            visible: true
        },
    },
});

See Also

RtScrollIndicator
RtScrollBar
RtListOptions