unmarkTimespan

removes marking/blocking set by the markTimespan() method

void unmarkTimespan(HTMLElement| array divs);
divsHTMLElement| arraya timespan to remove marking/blocking from (or an array of timespans)

Example

var spanDIV = scheduler.markTimespan({  
    days:  [0,6],  
    zones: "fullday"
});
 
scheduler.unmarkTimespan(spanDIV);

Related samples

Details

Available from version 3.5

The method requires the limit plugin to be activated.

See also
Back to top