Logical Delete Events

Hello,
Thank you for your job.
I want to use logical delete events from my database, using action_flag field.
How can i realize it?

If you are using default server side solution ( connectors ) you can define your own deletion logic through custom sql, check

docs.dhtmlx.com/doku.php?id=dhtm … _an_action

$scheduler->sql->attach("Delete","Update tableA set action_flag = 1 where id={id}");

Thank you.

Do you have the Java connector’s version of that sample?

docs.dhtmlx.com/doku.php?id=dhtm … ex_queries

scheduler.sql.attach(OperationType.DELETE,"Update tableA set action_flag = 1 where id={id}");