Hi,
i have the following code in my php file:
$cross = new CrossOptionsConnector($res);
$cross->options->render_table("user","user_id","user_id(value),kuerzel(label)");
$cross->link->render_table("event_user","event_id", "user_id,event_id");
$scheduler = new SchedulerConnector($res);
$scheduler->set_options("user_id", $cross->options);
$scheduler->render_table("events_shared","event_id","start_date,end_date,text,user,anzahluser,details,reccuring,customer,event_type,userId");
In a separate iframe I can select an event with a click (Eventnameand the php file get’s the Parameter $_GET[“aktionsid”].
It doesn’t work! I see the selected event, but i could change anything and save and my multiple checkboxes (user_id) are not displayed. Any ideas?
kind regards,
shufro