list, default pageSize
current the pageSize always default to 10, how to change that value?
pagination.pageSize prop to the useTable hook. Here's an example:pagination.pageSize instead.Note: you can ask me a follow up question by @ mentioning me again useSelect hook, you can set the pagination property to enable pagination. The pagination property accepts an object with current and keys. The current key represents the current page, and the key represents the number of items per page.useSelect. If you want to enable it, set the prop to "server".Note: you can ask me a follow up question by @ mentioning me again pageSizepageSizepageSizepageSizeinitialPageSizepagination.modeuseTable({
refineCoreProps: {
pagination: {
pageSize: 20,
},
},
}); const { selectProps } = useSelect({
resource: "categories",
pagination: { current: 3, pageSize: 8 },
}); useSelect({
pagination: {
mode: "server",
},
})