django-plotly-dash icon indicating copy to clipboard operation
django-plotly-dash copied to clipboard

Expose plotly dash apps as django tags

Results 115 django-plotly-dash issues
Sort by recently updated
recently updated
newest added

DjangoDash.register_page(__name__, path="/") gives this error: "type object 'DjangoDash' has no attribute 'register_page' ". This works with dash, however. I noticed that multi page app in dash was introduced on June...

html.A('google', href='google.com', target="_blank") Works as intended in version 1.6.4 Breaks in any updated versions. target="_self" does work

question

I'm getting this warning when the server starts: ``` .../site-packages/dash_bootstrap_components/_table.py:5: UserWarning: The dash_html_components package is deprecated. Please replace `import dash_html_components as html` with `from dash import html` import dash_html_components as...

question

seeing an error of the variety ``` Blocked opening '' in a new window because the request was made in a sandboxed frame whose 'allow-popups' permission is not set. ```...

question

The needed list of sandbox permissions for iframes is continually expanding; #411 is the most recent example. The permissions themselves should be in a single place - and perhaps configurable...

enhancement

Firstly huge thx for your work and for keeping it updated!!!

Monkey-patch the dash json conversion to add in lazy evaluation of text for Django. Addresses #404

The JSON encoder used to send responses (`plotly.utils.PlotlyJSONEncoder`) does not currently permit the use of lazy string evaluation in Django, such as for translation of messages, as described in #404...

enhancement

If possible, enable the use of flexible callbacks. This would address #406

enhancement

```python from django.utils.translation import gettext_lazy as _ values_dropdown = dcc.Dropdown( id="value", options=[ {"label": _("All values"), "value": "all"}, {"label": _("Value A"), "value": "a"}, {"label": _("Value B"), "value": "b"}, ], value="all", className="col-md-12",...