# Potential bug: Dash DataTable paging for multiple DataTables on the same page

**URL:** https://community.plotly.com/t/potential-bug-dash-datatable-paging-for-multiple-datatables-on-the-same-page/45431
**Category:** Dash Python
**Created:** [September 28, 2020, 2:43pm UTC](https://community.plotly.com/t/potential-bug-dash-datatable-paging-for-multiple-datatables-on-the-same-page/45431 "2020-09-28T14:43:26Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![mafyk](https://avatars.discourse-cdn.com/v4/letter/m/5daacb/32.png) [@mafyk](https://community.plotly.com/u/mafyk)
#### Post date: [September 28, 2020, 2:43pm UTC](https://community.plotly.com/t/potential-bug-dash-datatable-paging-for-multiple-datatables-on-the-same-page/45431/1 "2020-09-28T14:43:27Z")

</div>

When I add 2 Dash DataTables on the same page and enable paging (native), it doesn’t work for the first table, only for the second one. On the first table I see the paging controls, but nothing happens when I try to use (click on) them.

**Code example**

```auto
import dash
import dash_table
import dash_html_components as html
import pandas as pd

df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/solar.csv')

app = dash.Dash( __name__ )

table1 = dash_table.DataTable(
    id='table1',
    columns=[{"name": i, "id": i} for i in df.columns],
    data=df.to_dict('records'),
    page_action="native",
    page_size=5,
)

table2 = dash_table.DataTable(
    id='table2',
    columns=[{"name": i, "id": i} for i in df.columns],
    data=df.to_dict('records'),
    page_action="native",
    page_size=7,
)

app.layout = html.Div([
    table1,
    table2
])

if __name__ == ' __main__':
    app.run_server(debug=True)

```

---

<div class="post-metadata">

### Author: ![chriddyp](https://sea2.discourse-cdn.com/flex024/user_avatar/community.plotly.com/chriddyp/32/16855_2.png) [@chriddyp](https://community.plotly.com/u/chriddyp)
#### Post date: [September 29, 2020, 3:05pm UTC](https://community.plotly.com/t/potential-bug-dash-datatable-paging-for-multiple-datatables-on-the-same-page/45431/2 "2020-09-29T15:05:24Z")

</div>

Thanks for reporting! Can you print out the version number youre on too?

```auto

print(dash_table. __version__ )

```

---

<div class="post-metadata">

### Author: ![mafyk](https://avatars.discourse-cdn.com/v4/letter/m/5daacb/32.png) [@mafyk](https://community.plotly.com/u/mafyk)
#### Post date: [September 29, 2020, 3:24pm UTC](https://community.plotly.com/t/potential-bug-dash-datatable-paging-for-multiple-datatables-on-the-same-page/45431/3 "2020-09-29T15:24:04Z")

</div>

```auto
print(dash_table. __version__ )
4.10.1

```

---

<div class="post-metadata">

### Author: ![chriddyp](https://sea2.discourse-cdn.com/flex024/user_avatar/community.plotly.com/chriddyp/32/16855_2.png) [@chriddyp](https://community.plotly.com/u/chriddyp)
#### Post date: [September 29, 2020, 3:56pm UTC](https://community.plotly.com/t/potential-bug-dash-datatable-paging-for-multiple-datatables-on-the-same-page/45431/4 "2020-09-29T15:56:57Z")

</div>

Thanks! Confirmed the issue on my end, thank you for the simple reproducible example. Tracking this issue in [https://github.com/plotly/dash-table/issues/834](https://github.com/plotly/dash-table/issues/834)
