Reactive List with custom Card displaying to same row #1581
Unanswered
justgfather
asked this question in
Q&A
Replies: 1 comment
-
@justgfather Your code doesn't show how you're arranging the filters. If you want to display the results in the same row as filters, you need to check on the arrangement of all the items. onAllData is renamed to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to put my card on the same row (horizontally) but it is not working as you can see on the picture
Here is my code:
<ReactiveList componentId="SearchResult" dataField="original_title" size={3} pagination react={{ and: [ 'mainSearch', 'ratingsFilter', 'publishFilter', 'authorFilter', ], }} renderItem={(res) => ( <Grid item key={res.id} md={4} xs={12}> <BookCard book={res} /> </Grid> )} />
There use to be OnAllData, but i do not have it in v3.
Beta Was this translation helpful? Give feedback.
All reactions