We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, if I search for something, I will get, for example,
From 1 to 12 of 411 entries (411 total records)
It would be nice to be able to get a way to pass the number of filtered records too, so that I could get:
From 1 to 12 of 12 entries (411 total records)
My JSON endpoint is already returning a filtered count, so I would simply need to hook it into vbt.
The text was updated successfully, but these errors were encountered:
Ok, I overrode the pagination-info slot with:
<template slot="pagination-info" slot-scope="props"> <div class="text-right justify-content-center"> <template v-if="props.currentPageRowsLength != 0">From 1 to {{props.currentPageRowsLength}} of {{filtered_rows}} entries</template> <template v-else="v-else">No results found</template> <template> ({{props.originalRowsLength}} total records)</template> </div> </template>
But it feels a bit dirty using props.stuff and local variables.
Sorry, something went wrong.
No branches or pull requests
Right now, if I search for something, I will get, for example,
It would be nice to be able to get a way to pass the number of filtered records too, so that I could get:
My JSON endpoint is already returning a filtered count, so I would simply need to hook it into vbt.
The text was updated successfully, but these errors were encountered: