Refresh a table

I have a radio in my table, and when i click it, my code runs, but i need to refresh the table. Can anyone help?
Tables\Columns\ViewColumn::make('root step')->action(function (ItemProcessStep $step) {
    $this->ownerRecord->root_step_id = $step->id;
    $this->ownerRecord->save();
    $this->reset(); // this does't work, what should I actually be doing?
})->view('tables.columns.root-step-radio', ['rootStep' => $rootStep]),
image.png
Was this page helpful?