Philipp Rudiger

Results 1199 comments of Philipp Rudiger

I think a change in the default does seem warranted but I'd be happy to defer it to 2.0. Without looking at any of the code I think all that's...

This is fabulous @Zelfior. What I suggest is that we create a `panel-reactflow` extension that lives in the https://github.com/panel-extensions/ org. I'd recommend starting with https://github.com/panel-extensions/copier-template-panel-extension, adding your implementation and then...

We really need an expert on VSCode here. We had similar problems with JupyterLab but they provided CSS classes we could apply to prevent the event propagation. The same issue...

Thanks for the detailed investigation @etihwo.

MultiChoice might cover it if it supported adding new elements rather than just allowing you to choose between existing elements.

Overall this looks very promising. Can you briefly describe: - How you associate a document with a specific dataset in the UI - What the plan is for getting rid...

Even simpler reproducer: ```python import panel as pn import ipywidgets pn.extension() current_city = "All" def create_widget_content(): value=f"Current City: {current_city}" return ipywidgets.HTML(value=value) def update_card(event): card.objects = [event.new] city_select = pn.widgets.Select( name="City...

@dalthviz Thanks for looking into it, if you could please open your branch as a PR and we can iterate from there.

Fixed in #2467 but there is a wrinkle with your code, for some reason this doesn't work: ```javascript btn.css_classes.push("pn-loading", "arcs"); btn.properties.css_classes.change.emit() ``` but this does: ```javascript btn.css_classes = ["pn-loading", "arcs"]...