Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I need to create full calendar with extension. I have used Jquery full calendar, where all files are loaded except CSS. Please can anybody say how to call the CSS file in Qlik extension.
Regards,
Yasmeen
Thanks, I've cracked the issue and I've resolved it. Now calendar is displaying with data, next I need to make page traverse on click of specific data exist in the calendar window.
Hi Mani,
If you have to include any external libraries you can include it in the js file this way:
var xHTML;
define( [
"qlik"
,"jquery"
,"text!./css/scoped-bootstrap.css"
,"text!./css/style.css"
,"text!./html.html"
],
function ( qlik, $, boot, cssContent, xHTML ) {
$( '<style>' ).html( boot ).appendTo( 'head' ); // Adding scoped bootstrap to head
}