panel icon indicating copy to clipboard operation
panel copied to clipboard

Panel: The powerful data exploration & web app framework for Python

Results 560 panel issues
Sort by recently updated
recently updated
newest added

The new admin page looks really, really nice. But as far as I can see everybody can access it if enabled. I would like to be able to restrict access....

type: enhancement

### ALL software version info ``` panel : 0.13.1 Python version : 3.9.13 IPython version : 8.4.0 jupyter notebook : 6.4.12 OS : macOS 11.5.2 (Big Sur) Browser : Safari...

type: bug
component: tabulator

panel==0.13.1 ```python import pandas as pd import holoviews as hv hv.extension('bokeh') station_info = pd.read_csv('https://raw.githubusercontent.com/holoviz/holoviews/master/examples/assets/station_info.csv') scatter = hv.Scatter(station_info, kdims='services', vdims='ridership') scatter.opts(tools=['hover']) import panel as pn pn.panel(scatter, sizing_mode="stretch_both").servable() ``` ![image](https://user-images.githubusercontent.com/42288570/180595677-3bd667fa-fa01-4e73-b493-2464bd5cbdcd.png) I would...

type: bug

I'm trying to use vtkVectorText with vtkFollower. Text positioned at the origin behaves as expected. For text away from the origin, orbiting the view causes the non-origin-text to move away...

Panel 0.13.1 ```python import panel as pn component1=pn.panel("Value1") component2=pn.panel("Value2") selection = pn.widgets.RadioBoxGroup(value=component1, options=[component1, component2]) pn.Column( selection ).servable() ``` shows ![image](https://user-images.githubusercontent.com/42288570/178573885-12e5afef-ecda-4332-a970-fe6c17ef26b8.png) I would expect "Value1" and "Value2" to be shown as...

wontfix

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

#### Is your feature request related to a problem? Please describe. The feature request is originated by this question https://discourse.holoviz.org/t/reactivehtml-data-provided-to-server-side-event-handlers-by-dom-events/3944 Following the documentation for [DOM events](https://panel.holoviz.org/user_guide/Custom_Components.html?highlight=events#dom-events) I find a very...

The page is reset to page 1 when a sorter is applied in pagination mode.

type: bug
component: tabulator

I'm trying to use the `on_click` callback on a `Tabulator` widget in the same way it is used in https://github.com/holoviz/panel/issues/3625. However, my callback function doesn't seem to be firing correctly....

more info needed