Q-table slot:pagination 'q-table__control' it just stays centered in the middle of the footer #17780
Unanswered
ILadyLuckI
asked this question in
General - Components / Directives / etc
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
using slot:pagination generates a 'q-table__control' with
a Records per page: tag that is very practical for the user! However, I am unable to move this 'q-table__control' either to the right or to the left! This doesn't allow me to add items to the table footer in an organized way, for example some 'badges'! Is there any way to move this ''q-table__control' component? I've already tried using !important, as well as ::v-deep and it just doesn't leave the middle of the footer!
Thanks!
<q-table dense style="background-color: #fafafa; overflow: auto" class="fixar-scroll-header scroll altura-tabela" :class="[ atribuiSombra ? 'atribui-sombra-th-left' : '', atribuiSombraFuncoes ? 'atribui-sombra-td-right atribui-sombra-th-right' : '' ]" :data="recebimentos" :pagination.sync="pagination" selection="multiple" :selected.sync="recebimentosSelecionados" >
<template v-slot:pagination="scope"> <!-- CONTAINER --> <div class="container"> <!-- PAGINATION --> <div class="pagination"> </div> <!-- BADGES --> <div class="badges"> </div> </div> </template> </q-table>
`<style scoped>
.fixar-scroll-header ::v-deep .q-table__bottom {
display: flex;
flex-wrap: nowrap;
flex-direction: row-reverse;
padding: 0px !important;
}
.container {
display: flex;
flex-direction: row-reverse;
justify-content: center;
align-items: center;
}
.badges {
display: flex;
flex-wrap: nowrap;
}
.pagination{
![footer](https://private-user-images.githubusercontent.com/69736274/405776090-969a07bf-b462-4e60-9531-12ff9c0bcbcf.PNG?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwNDAyODYsIm5iZiI6MTczOTAzOTk4NiwicGF0aCI6Ii82OTczNjI3NC80MDU3NzYwOTAtOTY5YTA3YmYtYjQ2Mi00ZTYwLTk1MzEtMTJmZjljMGJjYmNmLlBORz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDE4Mzk0NlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTk1M2VmYzNkNTE2YzljMmM4ZjI4MDE3OTViODViNGM4OGU3YjNhNTVlYmIwYzUzYTU3NWE1ZTdiMWM0MmJlZGImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.5RO1CFoLKwAB4YmAQCi1mpN-scL3SS_ZdMcr3d5YVxU)
display: flex;
justify-content: right;
align-items: center;
flex-wrap: nowrap;
}
</style>
`
Beta Was this translation helpful? Give feedback.
All reactions