JavaScript/jQuery TagBox - Enable Paging

Paging properties are set in the DataSource: paginate enables paging; pageSize specifies how many data items a page should contain.

JavaScript
  • $(function() {
  • $("#tagBoxContainer").dxTagBox({
  • dataSource: new DevExpress.data.DataSource({
  • store: /* A store is configured here */,
  • paginate: true,
  • pageSize: 10
  • }),
  • // ...
  • });
  • });

Local arrays and remote datasets loaded using the CustomStore in raw mode are only rendered page by page. In other cases, remote datasets are also loaded page by page if the server can partition data.

See Also