Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

issue #834 fix when pagination doesn't work when more than one table … #907

Merged
merged 7 commits into from
Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- [#907](https://github.com/plotly/dash-table/pull/907)
- Fix a bug where pagination did not work or was not visible. [#834](https://github.com/plotly/dash-table/issues/834)
- Fix a bug where if you are on a page that no longer exists after the data is updated, no data is displayed. [#892](https://github.com/plotly/dash-table/issues/892)


### Added
- [#545](https://github.com/plotly/dash-table/issues/545)
- Case insensitive filtering
Expand Down
2 changes: 1 addition & 1 deletion src/dash-table/components/Table/Table.less
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@

.dash-table-container {
.previous-next-container {
float: right;
text-align: right;
padding: 5px 0px;

.page-number {
Expand Down
5 changes: 5 additions & 0 deletions src/dash-table/derived/paginator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ function makePaginator(params: IPaginatorParams | null): IPaginator {
const {setProps, page_count} = params;
let {page_current} = params;

if (page_count && page_count - 1 < page_current) {
page_current = 0;
updatePage();
}

function updatePage() {
setProps({
page_current,
Expand Down
43 changes: 43 additions & 0 deletions tests/selenium/test_pagination.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import dash
from dash.dependencies import Input, Output
from dash.exceptions import PreventUpdate
import dash_html_components as html
import dash_core_components as dcc

from dash_table import DataTable

Expand Down Expand Up @@ -205,3 +207,44 @@ def test_tpag010_limits_page(test):

assert target.paging.current.get_value() == "10"
assert test.get_log_errors() == []


def get_app2():
app = dash.Dash(__name__)

app.layout = html.Div(
[
html.Button("i=20", id="button", n_clicks=0),
DataTable(
id="table",
page_size=5,
columns=[{"name": "i", "id": "i"}, {"name": "square", "id": "square"}],
data=[{"i": i, "square": i ** 2} for i in range(50 + 1)],
page_current=5,
),
dcc.Graph(),
]
)

@app.callback(Output("table", "data"), Input("button", "n_clicks"))
def update_table_data(n):
return (
[{"i": i, "square": i ** 2} for i in range(20 + 1)]
if n > 0
else dash.no_update
)

return app


def test_tpag011_valid_page(test):
test.start_server(get_app2())

target = test.table("table")
test.find_element("#button").click()

assert target.paging.current.get_value() == "1"
assert test.get_log_errors() == []

test.table("table").is_ready()
test.percy_snapshot("test_tpag011 Pagination row visible")