Maxime Liquet
Maxime Liquet
Most of our tutorials use either ipyleaflet or folium to map the results of a search, and sometimes to play around with those results (e.g. select those that will be...
When a Tabulator widget is sorted and a selection is made, the `selected_dataframe` returned is not the actual selected dataframe.
Since most of the methods that register callbacks now accept async callbacks, it makes sense to also add this capability to `pn.state.onload`.
Triggering an update of a Tabulator table shrinks its display to 20 lines. ```python import numpy as np import pandas as pd import panel as pn pn.extension('tabulator') df = pd.DataFrame(np.random.rand(50,...
Local large PDF files cannot all be rendered, and even files of moderate size. The implementation converts the PDF to a base64-string, and uses the HTML `embed` tag whose `src`...
Fixes https://github.com/holoviz/panel/issues/3647 By setting up the `pageLoaded` callback that is triggered on page change by Tabulator JS, and within which the `page` model attribute is set when `pagination` is `'local'`....
The page is reset to page 1 when a sorter is applied in pagination mode.
Opening the date widget of a Tabulator date cell and hitting `Escape` when that cell value is `NaN` triggers a `TableEditEvent` while it shouldn't:  ```python import numpy as np...
Panel has the `AutocompleteInput` widget that helps application users to select an item among a large list of options available. However it only works from left-to-right. A full-blown Search widget...
The `TextEditor` widget should allow an app visitor to resize it manually. The use case motivating this feature request is to be able to extend vertically the widget when the...