jphearse
jphearse

Reputation: 13

PrimeNg Schedule styles do not work

I am having trouble trouble getting the styles for the schedule in primeng to work. Image Here

Upvotes: 1

Views: 929

Answers (1)

Vikhyath Maiya
Vikhyath Maiya

Reputation: 3202

Install

npm install fullcalendar
npm install jquery
npm install moment

and then include the dependencies in angular-cli.json as

under styles add

"../node_modules/fullcalendar/dist/fullcalendar.min.css"

and under script add

 ../node_modules/jquery/dist/jquery.min.js
 "../node_modules/fullcalendar/dist/fullcalendar.js" 

This should do the trick

update

If you are not using angular-cli please use

<link href="node_modules/fullcalendar/dist/fullcalendar.min.css" rel="stylesheet">

in the index.html and

'moment': 'npm:moment',
'jquery':'npm:jquery/dist/jquery.js',
 'fullcalendar':'npm:fullcalendar/dist/fullcalendar.js'

in system.config.js

Upvotes: 2

Related Questions