Wijmo UI for the Web
ensureEventDialogOnBody Option
wijmo.evcal.wijevcal Namespace > options type : ensureEventDialogOnBody Option

Default value: false

Indicates whether to append the event dialog element to the body element rather than to the event calendar container.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  boolean
    returnsValue = $(".selector").wijevcal("option", "ensureEventDialogOnBody");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").wijevcal("option", "ensureEventDialogOnBody", newValue);
        
});
var ensureEventDialogOnBody : boolean;
Example
$("#eventscalendar").wijevcal(
     { ensureEventDialogOnBody: true });
Remarks

If true, the dialog appends to the body element.

If false, the dialog appends to the event calendar container.

See Also

Reference

options type
wijevcal jQuery Widget