How to display #someContentDiv (section somewhere separate on the page, but hidden for extended-tooltip-like display purposes), as long as it possible? Thanx
It's possible to display custom HTML using .showHtml() method.
You can get the inner HTML of a certain element using innerHTML:
var html = document.getElementById("someContentDiv").innerHTML; new DayPilot.Modal().showHtml(html);