Maxime Liquet

Results 316 issues of Maxime Liquet

The `selected_dataframe` property is computed based on the `current_view`, which can return wrong data or raise an error if some filters are applied. I think the `selected_dataframe` should not be...

type: bug
component: tabulator

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.

type: bug
component: tabulator

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`...

type: bug
component: tabulator

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...

type: bug
component: tabulator

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...

type: bug
component: tabulator

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...

type: bug
component: tabulator

```python import pandas as pd, panel as pn, datetime as dt pn.extension('tabulator') df = pd.DataFrame({ 'datetime': [dt.datetime(2019, 1, 1, 10), dt.datetime(2020, 1, 1, 12), dt.datetime(2020, 1, 10, 13), dt.datetime(2020, 1,...

type: bug
component: tabulator

As per the title, when `pagination='local'` the widget's `page` attribute isn't updated and is always 1.

type: bug
component: tabulator

As per the title and the example below: ```python from pandas._testing import makeMixedDataFrame df = makeMixedDataFrame() table = pn.widgets.Tabulator(df, selectable_rows=lambda df: [0]) # This should raise an error table.selection =...

type: bug
component: tabulator

Panel objects embedded in a ReactiveHTML component don't respect the size of the ReactiveHTML component. Here's an example with a simple `Str` pane embedded in a basic ReactiveHTML component. As...

type: bug