Edit the Scheduler

I use the timeline skin to build up a schedule. I want to edit the schedule format. I have a timeline screen tab. In this format, it also has , and screen tab. I want to ask I can delete these screen tab or not.

Thx !

Hello,

You want to remove some tabs?
If some - simply edit their style option and add

display: none;

Kind regards,
Ilya

Ilya ,

Can you provide more detail about this solution ?

Thx !

Ivan

<div class="dhx_cal_tab" name="day_tab" style="right:204px; display: none;"></div> <div class="dhx_cal_tab" name="week_tab" style="right:140px; display: none;"></div> <div class="dhx_cal_tab" name="month_tab" style="right:76px; display:none;"></div>
Best regards,
Ilya

Ilya ,

I understand your code 's useful and meaning. I also find the item name and id is correct. But I also use your code to testing and no change in action. That is I cannot delect the tab , and in schedule. I also concern in your code < display : none >.

Do you have more explaination of this usage ?
And have any other solution of this problem ?

Thx !

Ivan

Hello,

You want to hide day, week and month tabs? Is that correct?
If so you need to edit their CSS styles to hide them:

<div id="scheduler_here" class="dhx_cal_container" style='width:100%; height:100%;'> <div class="dhx_cal_navline"> <div class="dhx_cal_prev_button">&nbsp;</div> <div class="dhx_cal_next_button">&nbsp;</div> <div class="dhx_cal_today_button"></div> <div class="dhx_cal_date"></div> <div class="dhx_cal_tab" name="day_tab" style="right:204px; display: none;"></div> <div class="dhx_cal_tab" name="week_tab" style="right:140px; display: none;"></div> <div class="dhx_cal_tab" name="month_tab" style="right:76px; display: none;"></div> </div> <div class="dhx_cal_header"> </div> <div class="dhx_cal_data"> </div> </div>

Best regards,
Ilya

Ilya,

I know your code. But I want to ask how to edit the CSS. Or your code may add where ?

Thx !

Ivan

I’ve already added it. Please note “display: none;” part.

Kind regards,
Ilya