Change background color, change text, reload scheduler

Hello everyone, need help on few problems

  1. When scheduler is loaded, how can I change the background color of date cell if it already has events created ?
  2. When creating new event, how can I change the text “New event” to what I want, i.e. “Your note”, “Your memo”…
  3. After create, update, delete, I want to reload scheduler to see latest event, I used
    scheduler.attachEvent(“onEventChanged”, function(event_id, event_object) {
    scheduler.ClearAll();
    scheduler.load("/Calendar/Data");
    return true;
    })
    it did load the latest event, but still remain old event and only disappear after F5

Hi,
1)you may manage background colors with markedTimespan api
docs.dhtmlx.com/doku.php?id=dhtm … ler:limits

2)you can change default label for all events: scheduler.locale.labels.new_event = "Custom text"; or assign it dinamically with ‘onEventCreated’ eventscheduler.attachEvent('onEventCreated', function(event_id){ var ev = scheduler.getEvent(event_id); ev.text = 'Custom text'; });

3)try reloading scheduler on AfterUpdate event of the dataprocessorvar dp = new dataProcessor(...); dp.attachEvent("onAfterUpdateFinish",function(){ scheduler.ClearAll(); scheduler.load("/Calendar/Data"); })

Thank you very much Aliaksandr