Hi at all!
I have to differents tables "clienti" and "corsi".
With an inner join i have inserted into "corsi" the field "formazione" who is an originally field of clienti ( as always it give me error "unknown colum clienti.formazione in field list" that i bypassed selecting in "edit as" the readonly option ).
Anyway i would like change the value inside "formazione" with "BASSO" when i choose two of four differents options by a drop down box of another field named "cat_dipendenti".
I used this old code, in the page event "after record processed" for testing the possibility of change two differents field of two differents tables without the option of autofill.
if ($data["cat_dipendenti"]=="Impiegata")
{
$record["formazione_style"]='style="font-weight:bold;color:white;background:red"';
}
And it works.
I would like to know if exist or phprunner give the possibility to do the same thing changing the value not just the background color, so that i can see "BASSO" instead of a red background.
Thanks for help!
Best Regards.