show different time period with different day

i am a new with dhtmlxScheduler…
so i would like to set some condition when display the “scheduler.form_blocks.calendar_time”

as we know the code like

for (var e = f; e < d; e += this.config.time_step * 1) {
var h = this.templates.time_picker©;
a += “” + h + “”;
c = this.date.add(c, this.config.time_step, “minute”)
}

but can i show the other time picker with only at Sunday or Saturdays?
If can how to set it?

if (scheduler.locale.date.day_short[x]==‘Sun’||scheduler.locale.date.day_short[x]==‘Sat’){

the if statement like this? and i don’t know what should i put the “x” with it T__T

Hi,
currently timepickers can’t have different values for different days.
Although scheduler’s configuration doesn’t allow it, you may try doing it with custom code

thank you for your reply and do u know
how to get the templates day when i click a new events…

during the scheduler.form_blocks…get the date and its information what i clicked with~