Ref: apply css after editing using rowactions
dear Abu
I need to mix css with the inline edition,
In general I need that after editing the value using rowactions, the CSS condition is evaluated again.
Example:
for value = 1; fontcolor = red
for value = 2; fontcolor = blue
When I change the value from 1 to 2, the idea is that the fontcolor is updated from red to blue.
I’m trying with the examples on the page, but I can’t find any example where this works ..
attentive to your comments
Thank you!
1 Answers
You need to set reloadedit to true:
$opt[“reloadedit”] = true;
$g->set_options($opt);
This will force reloading data and apply new css on row actions.
Your Answer