Skip to content
New issue

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

Tabulator shift-click selection does not select range in the current view (different sort, filtering) #5826

Closed
dwr-psandhu opened this issue Nov 6, 2023 · 0 comments · Fixed by #7063
Labels
component: tabulator Related to the Tabulator widget type: bug Something isn't correct or isn't working
Milestone

Comments

@dwr-psandhu
Copy link
Contributor

ALL software version info

panel 1.2.x

Description of expected behavior and the observed behavior

Tabulator shift-click does not select range in the displayed view and ends up selecting other rows outside of the selected range.

Complete, minimal, self-contained example code that reproduces the issue

import pandas as pd
import panel as pn
pn.extension()

# creata a tabulator table with a dataframe
df = pd.DataFrame({'a': [1, 3, 2], 'b': [6, 5, 6]})
table = pn.widgets.Tabulator(df, sizing_mode='stretch_width', widths={'index': '20%', 'a': '40%', 'b': '40%'}, disabled=True)
pn.Row(table, width=400).show()

Screenshots or screencasts of the bug in action

Tabulator-SelectRangeIssue

@philippjfr philippjfr added the type: bug Something isn't correct or isn't working label Nov 6, 2023
@philippjfr philippjfr added this to the v1.3.2 milestone Nov 6, 2023
@maximlt maximlt added the component: tabulator Related to the Tabulator widget label Nov 11, 2023
@philippjfr philippjfr modified the milestones: v1.3.2, v1.4.0 Nov 22, 2023
@philippjfr philippjfr modified the milestones: v1.4.0, v1.4.x Mar 13, 2024
@philippjfr philippjfr modified the milestones: v1.5.x, v1.5.0 Aug 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component: tabulator Related to the Tabulator widget type: bug Something isn't correct or isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants