dash_table.DataTable(
id='warehouse_datatable',
editable = False,
sorting=True,
filtering =True,
sorting_type="multi",
row_selectable="multi",
style_table={'overflowX': 'scroll'},
columns=[{"name": i, "id": i} for i in warehouse_rates_df.columns],
data = warehouse_rates_df.to_dict("rows"),
style_data_conditional = [
{ 'if' : {'column_id' : 'ReceiveRate', 'filter': 'ReceiveRate
> num(10)' } , 'backgroundColor' : '#CCFFCC', 'color' : 'black'},
{ 'if' : {'column_id' : 'ReceiveRate', 'filter': 'ReceiveRate >
num(8)' } , 'backgroundColor' : '#E5FFCC', 'color' : 'black'}
instead of putting num(10), is there a way of putting a input value from the user? Because the ‘num(10)’ is wrapped in strings, is it even possible?