skin

returns the current skin of the scheduler

string skin;

Example

var currentSkin = scheduler.skin;// -> 'glossy' or 'classic'

Details

The method returns the current skin of the scheduler, if you're using the skin different from the default one ('terrace'). For the default skin the method returns 'undefined'.

Back to top