Update row with cell input in dashtable

I want to update 3 other cells in the row when the second cell in the row is updated. I have tried the solution `row_update` in `dash_table.DataTable`, but there was no respons in my case.

I am new to plotly hence it will be great if you can provide detailed solution.
A snapshot fo my layout code

presentation = {'vv': 'input', 'nn': 'input', 'dd': 'dropdown'}

editable_cols = {'vv': False, 'nn': True, 'dd': True}

property_cols = ['vv', 'nn', 'dd'']
dbc.Row(
            [
                dbc.Col(
                    html.Div([
                        html.Div(' Column Properties', className='card-header'),
                        html.Div([
                            dash_table.DataTable(
                                id='property-table',
                                style_cell={'textAlign': 'left'},
                                page_size=20,
                                # editable=True,
                                columns=[
                                    {"name": i, "id": i, "presentation": presentation[i],
                                     "editable": editable_cols[i]}
                                    for i in property_cols],
                                dropdown=dropdown,
                            ),
                        ]),

column vv is preloaded. I want to update column dd based on user’s input in column nn.