You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a table that looks like this <table-lite :is-loading="table.isLoading" :is-slot-mode="true" :columns="table.columns" :rows="table.rows" :total="table.totalRecordCount" :sortable="table.sortable" :page-size="20" :page-options="[ { value: 20, text: 20 }, { value: 50, text: 50 }, { value: 100, text: 100 }, ]" @do-search="doSearch" @is-finished="tableLoadingFinish" >
When I click on the pageOptions values, the value is not taken by page-size and I don't have a way to retrieve the value (20,50,100) to use it eventually in calls I need to do to Backend.
The text was updated successfully, but these errors were encountered:
I have a table that looks like this
<table-lite :is-loading="table.isLoading" :is-slot-mode="true" :columns="table.columns" :rows="table.rows" :total="table.totalRecordCount" :sortable="table.sortable" :page-size="20" :page-options="[ { value: 20, text: 20 }, { value: 50, text: 50 }, { value: 100, text: 100 }, ]" @do-search="doSearch" @is-finished="tableLoadingFinish" >
When I click on the pageOptions values, the value is not taken by page-size and I don't have a way to retrieve the value (20,50,100) to use it eventually in calls I need to do to Backend.
The text was updated successfully, but these errors were encountered: