Quantcast
Channel: 🎛️ Dash - Plotly Community Forum
Viewing all articles
Browse latest Browse all 6271

:mega: Dash v1.14.0 Released - Update the Tab's Title, Removing the "Updating..." Messages, Updated DataTable Link Behavior

$
0
0

Dash v1.14.0 is a minor release featuring:

  • Ability to update the document.title (the title that appears in your browser tab) via a title= argument. By default this is 'Dash'

    app = dash.Dash(title='Weekly Analytics')
    
  • Ability to update the document.title dynamically when you click on different tabs, navigate different pages, or really during any other interaction! See the Update the Document Title Dynamically based off of the URL or Tab example.

  • Ability to update the “Updating…” message that appears in the document.title during update via the update_title= argument. Set to None to remove this message. This was a community contribution from @stlehmann! :crown: See the Customizing or Removing Dash’s “Updating…” Message example in the docs.

  • Upgraded Plotly.js from 1.54.3 to 1.54.7

  • Added ability to configure markdown links behavior in DataTable. This fixes a regression introduced with #787 that made it impossible to open markdown links in the current tab. This adds a new property called markdown_options:

    dash_table.DataTable(markdown_options={'link_target': '_self'})
    

    link_target can be _blank, _parent, _self, _top or an arbitrary string (default: _blank)

:arrow_right: Official Changelog


Give this a release a try with

pip install dash==1.14.0

and let us know how it goes!

5 posts - 4 participants

Read full topic


Viewing all articles
Browse latest Browse all 6271

Trending Articles