Skin Builder for Scheduler and fullscreen

After using Online Skin Builder for dhtmlxScheduler to make a skin, I no longer have the button that is used to switch to fullscreen mode. How do I bring it back? Is this a bug with the Skin Builder (I noticed that there is also no fullscreen button in the preview)?

Yes, the class for this button wasn’t included by mistake.
You can manually added it. Also check that the path to “colapce-expand-icon.gif” image is correctly set:

.dhx_expand_icon{
position:absolute;
top:0;
right:0;
background-image:url(…/imgs/colapce-expand-icon.gif);
width:18px;
height:18px;
cursor:pointer;
background-position:0 18px;
z-index:16;
}

Thanks, it works great now.

Is there a possibility to make the Scheduler always start in fullscreen (expanded) view as a default?

Is there a possibility to make the Scheduler always start in fullscreen (expanded) view as a default?

You may try to use attached file. It provides the expand() method:

scheduler.init(…);
scheduler.expand();
ext_expand.zip (684 Bytes)