Update specific column after selecting on SelectColumn
So this is my code
each of the selection have a seperate column for time_stamp,
so if I select Order Created, the column order_created_time_stamp should be updated.
How can I achieve that?
this is kinda what i want to do
3 Replies
btw the time_stamps are not showed on my table,
should I just update them individually like I'll make the specific time_stamp column that is hidden and use updateStateUsing() ?
I want to do something like afterStateUpdated() method but there's no method like that on table columns
I would probably do this via a model event.
I ended up doing this, thanks it works.