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