Ok The way I had it was not working correctly so I am trying to get your edit down ilya .
Not working . My dht config file is attached to this post
these are my screenshots of everything
Do you think you could take a look for me?
BTW Im running in private mode so shouldnt your second edit be under the private instead of public?
Alls I want is the admin to create the events and then the techs to become the creator for that event.
At the moment admin is USER 62
as you can see nothings changing . So I haven’t edited your file correctly
The techs USER ID’s and field designation are
Alan: USER 63 - techs_2
Mark: USER 64 - techs_1
Stuart: USER 65 - techs_0
Simon: USER 67 - techs_3
Giani: USER 68 - techs_4
Bernie: USER 75 - techs_5
So again , I need USER 62 to create the event ( Which is admin ) or anyone for that matter
Then by reading the ‘techs’ field from the database assigning a USER ID to the USER Column from that field
eg. admin = 62 submits event ,
upon save the php file reads the ‘techs’ field in the database and changes event_user ( user column )
to respective tech .
IE Alan :user would change from 62 ( admin ) to 63 ( alan )
Can you take a look and see what i’m doing wrong?
Thanks in advance 
Edit :-
Can’t I just hardcode this ?:-
$fields .= ',rec_type,event_pid,event_length,user';
if (($this->settings['privatemode'] == 'on')&&($usertype != "superadministrator")) {
$this->scheduler->event->attach("beforeRender", Array($this, "private_remove_updated"));
$query = "SELECT event_id,".$fields.",user FROM `".$this->prefix.$this->tableEventsRec."` WHERE `user`='".($this->userid)."' OR `event_pid`!=0";
$this->scheduler->render_sql($query,"event_id", $fields);
} else {
$this->scheduler->render_table($this->prefix.$this->tableEventsRec,"event_id",$fields);
}
dhtmlxSchedulerConfigurator.zip (10.3 KB)