panel
panel copied to clipboard
Panel: The powerful data exploration & web app framework for Python
This is related to [discourse topic](https://discourse.holoviz.org/t/tabulator-resets-view-if-no-results-in-header-filter/3735) (where it is described more in detail) tried with latest panel version 0.13.1rc3 Tabulator widget #### Description of expected behavior and the observed behavior...
The horizontal scroll position is reset after patching, may be related to https://github.com/holoviz/panel/issues/3553 and https://github.com/holoviz/panel/issues/3249 that target the vertical scroll position.
```bash pip install panel==0.13.1 hvplot==0.8.0 holoviews==1.14.9 matplotlib==3.5.2 ``` -------- I'm trying to create a demo app using Panel, hvplot and HoloViews using the matplotlib backend ```python import pandas as pd...
I just want to create a simple demo app with Plotly. But its so difficult to get something that is responsive out of the box if I don't use the...
I'm trying to create a Panel demo app using hvplot, HoloViews and the Plotly backend. The problem is that its not responsive. This is friction and makes it so much...
fix https://github.com/holoviz/panel/issues/3316
When a Python filter is applied to a Tabulator widget, i.e. with `add_filter(value, column)`, and a cell is changed in the filtered table, the row index returned by the `TableEditEvent`...
When pagination is `remote` and a client sorter is applied to the table, editing a cell emits a TableEditEvent whose row index is wrong, i.e. it's not the one of...
Execute the example below in a notebook, filter *col1* by `a` and edit one of the rows in *col2*. ```python import pandas as pd import panel as pn pn.extension('tabulator') df...
In the example below the rendered table is sorted by the first sorter while the `current_view` is sorted by the second. ```python import pandas as pd import panel as pn...