I’m trying to create a small tool system and i’m using jqwidgets for it. After reading some documentations on how to implement theme and strictly following it. Themes are not applying to any of my controls. jqwidgets module is already installed on my angular app and i’m trying to use dark theme but it doesn’t get applied.
<jqxGrid
[theme]="'dark'"
[width]="getWidth()" [source]="dataAdapter" [columns]="columns"
[pageable]="true" [autoheight]="true" [sortable]="true"
[altrows]="true" [enabletooltips]="true" [editable]="true">
"styles": [
"src/styles.css",
"./node_modules/jqwidgets-ng/jqwidgets/styles/jqx.base.css",
"./node_modules/jqwidgets-ng/jqwidgets/styles/jqx.dark.css"
],