現在のページが変更されたときに発生されます。
ページングが実行さる前に発生されます。
ページングが実行された後に発生されます。
ページネーターの perPage
プロパティ値が変更されたときに発生されます。
totalRecords と perPage から計算された総ページ数。
現在のページが最初のページかどうかを返します。
const lastPage = this.paginator.isFirstPage;
現在のページが最後のページかどうかを返します。
const lastPage = this.paginator.isLastPage;
カスタム OverlaySettings を設定します。
<igx-paginator [overlaySettings] = "customOverlaySettings"></igx-paginator>
ページネーターの現在のページを取得または設定します。 デフォルトは 0 です。
let page = this.paginator.page;
ページネーターのページごとに表示される項目の数を取得または設定します。 デフォルトは 15 です。
let itemsPerPage = this.paginator.perPage;
リソース文字列を返すアクセサーです。
リソース文字列を設定するアクセサーです。 デフォルトで EN リソースを使用します。
ページネーターの選択でカスタム オプションを設定します。
let options = this.paginator.selectOptions;
合計レコードを設定します。
let totalRecords = this.paginator.totalRecords;
ページネーター コンポーネントの説明
Igx Parent
IgxGridComponent, IgxTreeGridComponent, IgxHierarchicalGridComponent, IgxPivotGridComponent, *