Hayk Kirakosyan
Hayk Kirakosyan

Reputation: 21

primereact, How to show all rows in pagination

Actually I am trying to show all rows in my PrimeReact Datatable components, however I cannot find how to show all rows.

 <Table
    value={_data}
    sortMode="multiple"
    responsiveLayout="scroll"
    paginator
    rows={'All'}
  />

When I hit rows to all, it doesn't show all rows. How to solve this issue?

Upvotes: 1

Views: 468

Answers (1)

Melloware
Melloware

Reputation: 12029

Why not just set to rows={100000000} some gigantic number?

Upvotes: 0

Related Questions