jQWidgets Forums
Forum Replies Created
-
Author
-
January 22, 2018 at 8:47 am in reply to: ng build –prod doesn't work ng build –prod doesn't work #98352
Docs Updated!
https://www.jqwidgets.com/angular-components-documentation/documentation/angular-cli/angular-cli.htm
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi douglas168,
Make the service as a separate file. In the file where your
jqxGrid
is, subscribe to that service. In the success callback of the subscribe, take the data you received and do the normal things for ajqxGrid
to initialize(give the data to the dataAdapter…).Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 16, 2018 at 9:01 am in reply to: CheckBox in JQXGrid header – Not able to access grid CheckBox in JQXGrid header – Not able to access grid #98284Hi AK,
Everything that can be done in our jQuery widgets, can be done in the Angular version!
So, just rewrite that example in AngularBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 16, 2018 at 8:52 am in reply to: ng build –prod doesn't work ng build –prod doesn't work #98283Hi gyes,
This is because the compiler got a lot more strict. Now only the used
.ts
files must be compiled.
The problem comes from thetsconfig.json
file:"include": [ "src/**/*", "node_modules/jqwidgets-scripts/jqwidgets-ts/**/*" <=== Here ]
In that line, we include all the jQWidgets
.ts
files, and when we want to build for production it will give an error because it wants only the files we are using to be included.
So the solution:"include": [ "src/**/*" ], "files": [ // Here you must include all the <code>.ts</code> files you are using from the jQWidgets library. "node_modules/jqwidgets-scripts/jqwidgets-ts/angular_jqxgrid.ts" "node_modules/jqwidgets-scripts/jqwidgets-ts/angular_jqxchart.ts" ]
Our docs will be updated soon!
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 15, 2018 at 9:59 am in reply to: CheckBox in JQXGrid header – Not able to access grid CheckBox in JQXGrid header – Not able to access grid #98271Hi AK,
Please check out this demo:
https://www.jqwidgets.com/angular/angular-grid/angular-grid-checkboxselection.htmBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 15, 2018 at 9:36 am in reply to: jqxGrid shrinks to default size after panel collapse and open in angular 2 jqxGrid shrinks to default size after panel collapse and open in angular 2 #98270Hi vipink,
Can you please share me a simple example so I can test that?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 11, 2018 at 8:25 am in reply to: Angular 5.2.0 with TypeScript 2.6 Angular 5.2.0 with TypeScript 2.6 #98217January 9, 2018 at 8:34 am in reply to: angular custom component in jqxLayout angular custom component in jqxLayout #98190Hi elias_h,
Please provide me with an example, otherwise, I cant tell you what your issue is.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi douglas168,
The example you’ve given is pure logic and just bind 2-3 props to the UI.
Angular services are for that yes-> writing logic NOT UI things.
But there’s a huge difference between the example you’ve shared and our widgets.
Our widgets are UI components, so you can’t put them inside a service.
The most you can do is take the data they need through a service.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 8, 2018 at 8:34 am in reply to: css theme for angular material css theme for angular material #98177HI douglas168,
Most probably yes. It’s not on our roadmap, but it’s a small thing so maybe it will be done.
Thanks for the suggestion!Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 8, 2018 at 8:31 am in reply to: Initialising jqxinput in jqxwindow pop up in Docking layout Initialising jqxinput in jqxwindow pop up in Docking layout #98175Hi benjamin,
Check this topic:
https://www.jqwidgets.com/community/topic/jqxinput-missing-text-input-in-the-input-group/I don’t see your HTML tag for the input in the code provided. So please check this out.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 4, 2018 at 1:04 pm in reply to: (Angular 2) jqxTree -> Load on Demand with Ajax (Angular 2) jqxTree -> Load on Demand with Ajax #98148Hi Liam,
That’s strange, the event in Angular should contain the same things as the event in jQuery.
Can you share me some code so I can reproduce that?Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 2, 2018 at 8:34 am in reply to: jqxGrid header disappears in Chrome and FF jqxGrid header disappears in Chrome and FF #98100Hi odklizec,
A work item is created, but I can’t tell you when this will be fixed.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 2, 2018 at 8:27 am in reply to: (Angular 2) jqxTree -> Load on Demand with Ajax (Angular 2) jqxTree -> Load on Demand with Ajax #98099Hi Liam,
You can use the same approach as here:
https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxtree/index.htm#demos/jqxtree/ajaxloading.htm
, but I recommend using the Angular HTTP service instead.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 2, 2018 at 8:20 am in reply to: undefined properties in jqwidgets.d.ts undefined properties in jqwidgets.d.ts #98098Hi gyes,
Sorry for the inconvenience. This will be okay for the next release!
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts