I'm trying to incorporate some UI components to a BoilerplateJS project that I'm currently working on, to be specific I want to implement this [http://wijmo.com/wiki/index.php/Getting_Started_with_Wijmo] sample inside a BoilerplateJs component. How can I add the external css files to my BoilerplateJs project.
There are several ways to import style-sheets.
For module specific styling, you can include files by file path (example):
Boiler.ViewTemplate.setStyleLink(cssPath);
or by CSS text itself:
Boiler.ViewTemplate.setStyleText(cssText);