GriddleGriddle / Griddle

Simple Grid Component written in React
http://griddlegriddle.github.io/Griddle/
MIT License
2.5k stars 377 forks source link

Display more than 5 rows ? #833

Open nicolassalok1 opened 6 years ago

nicolassalok1 commented 6 years ago

Hello, is it possible to display more than 5 rows ?

Cheers

dahlbyk commented 6 years ago

Default pageSize is 10. You should be able to change it with:

<Griddle pageProperties={{ pageSize: 20 }} ... />

Or create a plugin with:

{
  initialState: {
    pageProperties: {
      pageSize: 20,
    },
  },
}