Windowed list view constructor options

interface IOptions<T, U> {
    layout?: WindowedLayout;
    model: T;
    renderer?: WindowedList.IRenderer<U>;
    scrollbar?: boolean;
}

Type Parameters

Properties

Windowed list layout

model: T

Windowed list model to display

A renderer for the elements of the windowed list.

scrollbar?: boolean

Whether the windowed list should display a scrollbar UI.