Hello,
I have imported import {jqxGridComponent} from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxgrid'
in the app.module.ts.
The jqxgrid was working well until I tried to add property [showfilterbar]="true"
to existing grid.
It seemed like showfilterbar is a property of jqwidgets-ng,
so I decided to import import {jqxGridModule} from "jqwidgets-ng/jqxgrid";
.
But ever since I imported jqxGridModule through jqwidgets-ng, there’s duplicated error.
I wonder what the difference is between two down below.
npm install jqwidgets-scripts - scripts
and
npm install jqwidgets-ng - angular modules
Is it okay I remove jqwidgets-scripts and just have jqwidgets-ng?