Using Table Events Question

HI,
As well as the the table event returning the changed record as ```
arguments[0]


if(vFormname == ‘form1’){
do this
}
if(vFormname == ‘form2’){
do that
}


Or am I just using the event incorrectly ?

TableEvents are occuring on the data level, so you won’t have the info about which form/element triggered them, because they are not triggered by them.

Paul

Hi Paul,
Just to be clear, it is the database (Mysql in my case) that triggers servoy when the table is updated etc. ?

No, it’s the datalayer inside Servoy, so TableEvents work across all databases

OK, I understand
Many Thanks