DocSpace-buildtools/web/ASC.Web.Storybook/stories/paging/base
2019-07-29 17:25:07 +03:00
..
base.paging.stories.js Web: Components: Added disabled property`s for paging component. Fixed Paging stories. 2019-07-29 17:25:07 +03:00
README.md Web: Components: Added disabled property`s for paging component. Fixed Paging stories. 2019-07-29 17:25:07 +03:00

Paging

Description

Paging is used to navigate med content pages.

Usage

import { Paging } from 'asc-web-components';

<ComboBox previousLabel='Previous' nextLabel='Next' pageItems={pageItems} perPageItems={perPageItems}/>

Properties

Props Type Required Values Default Description
pageItems array - - - Paging combo box items
perPageItems array - - - Items per page combo box items
previousLabel string - - Previous Label for previous button
nextLabel string - - Next Label for next button
previousAction function - - - Action for previous button
nextAction function - - - Action for next button
openDirection string - top, bottom bottom Indicates opening direction of combo box
disablePrevious bool - - false Set previous button disabled
disableNext bool - - false Set next button disabled