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

Filtering rows in dash table

$
0
0

@ajeeteshmishra wrote:

Hi everyone, I am preparing a dash where I have to put filters in columns. this is my code. The filter is coming in the table but the table is not getting filtered. Kinldy help.

html.Div([
                                          dash_table.DataTable(
                                                  id='datatable-filtering-fe',
                                                  
                                                  columns=[{'id': c, 'name':c, "deletable": True} for c in columns],
                                                  data=df.to_dict('records'),
                                                  filtering="native",
                                                  n_fixed_rows = 1,
                                                  style_cell={'width': '150px', 'textAlign': 'center'},
                                                  
                                                  style_table={'overflowX': 'auto','overflowY':'auto','maxHeight': '400px','minwidth':'100%','font-family':'Calibri'},
                                                  style_header={
                                                            'backgroundColor':  'rgb(52,98,145)',
            #                                                    'fontWeight': 'bold',
                                                            'textAlign':'center',
                                                            'color':'white',
                                                            'font-family':'Calibri'
            
                                                                },
                                                
                                                  ), html.Div(id='datatable-filter-container'),
                                          ],style={'width':'100%','height':'10%','display':'block','backgroundColor':'#E7E6E5'})

Unlike the example shown here-
https://dash.plot.ly/datatable/filtering

I am not putting the datatable in app layout but in the function below callback. There are multiple html.Div in the function. How will this callback get to know which html.Div to call ?

@app.callback(
    Output('datatable-filter-container', "children"),
    [Input('datatable-filtering-fe', "data")])
def update_graph(rows):
    if rows is None:
        dff = df
    else:
        dff = pd.DataFrame(rows)

Posts: 2

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 6271

Trending Articles