Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
yasmeenk
Partner - Creator
Partner - Creator

How to include Jquery CSS in qlik extension?

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

11 Replies
Not applicable

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.

reddy-s
Master II
Master II

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

}