Socket
Book a DemoInstallSign in
Socket

dash-table-experiments

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dash-table-experiments

Dash table experiments

latest
Source
npmnpm
Version
0.6.0
Version published
Weekly downloads
88
-58.29%
Maintainers
1
Weekly downloads
 
Created
Source

dash-table-experiments

What does a Dash Table component look like? dash-table-experiments is a package of alpha-level explorations in a Dash Table component. Everything is subject to change. See the CHANGELOG.md for recent changes.

The Dash Table component will likely be merged into the dash-core-components once it stabilizes.

For updates and more, please see the dash community discussion on tables.

If your organization or company is interested in sponsoring enhancements to this project, please reach out.

Example from usage.py Dash DataTable

Example from usage-editable.py Editable Dash DataTable

Usage

# Install 
$ pip install dash-table-experiments

Usage with Callbacks

Per this Dash community answer, to use callbacks with dash-table-experiments there are two key steps (for a full working example see usage-callback.py):

# 1. Declare the table in app.layout
dt.DataTable(
    rows=[{}], # initialise the rows
    row_selectable=True,
    filterable=True,
    sortable=True,
    selected_row_indices=[],
    id='datatable'
)

# 2. Update rows in a callback
@app.callback(Output('datatable', 'rows'), [Input('field-dropdown', 'value')])
def update_datatable(user_selection):
    """
    For user selections, return the relevant table
    """
    if user_selection == 'Summary':
        return DATA.to_dict('records')
    else:
        return SOMEOTHERDATA.to_dict('records')

Usage with Graphs

This example demonstrates the user's ability to select data points either in the table which updates the plot, or in the reverse, select points on the graph which updates the selection on the table. For a full working example see usage.py.

Usage Enabling Edits to a Table

Enable edits to a table which updates other objects e.g. a graph. For a full working example see usage-editable.py

FAQs

Package last updated on 21 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts