i want to use server-side-table with search at client side with the pagination handled through server. I have seen the example but the pagination is not working through server, and as per doc search is not possible at client side when sst is true.
Currenty searching is working fine instead of pagination. After select next page table won't load new data.
this still doesn't work
Pagination still not working correctly
Guys,
I think, I resolved pagination problem.
can you try @kregielpl
https://github.com/cagdaskarademir/vuesax/releases/tag/v3.8.15
@cagdaskarademir i am not using vuesax anymore :)
Guys,
I think, I resolved pagination problem.
can you try @kregielpl
https://github.com/cagdaskarademir/vuesax/releases/tag/v3.8.15
This solved my problem! hope hope this gets pushed on the next update.. worked like a charm ;)
this still doesn't work, up !
can you add :sst="true" or sst="true" @raphpacheco.
TotalCount, Pagination is important. You have to set totalcount from api response total length.
for example :
<vs-table
:sst="true"
class="mt-10"
ref="table"
:total="totalCount"
pagination
:max-items="paginationPageSize"
:data="paymentMethods"
@change-page="handleChangePage"
@sort="handleSort"
>
Most helpful comment
this still doesn't work