Forum Replies Created
-
Author
-
July 8, 2019 at 9:53 am in reply to: JQWidgets 8.0.0 gives error after build. JQWidgets 8.0.0 gives error after build. #105996
Hi Eswar,
This is fixed in the latest version of jqwidgets-ng
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi ajcroteau,
This is fixed in the latest version of jqwidgets-ng.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi abilbaolavieja,
Can you please confirm you are using
jqwidgets-ng
version7.2.1
?Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi EP,
Thanks for the feedback. The
jqwidgets-ng
is the new and better way to use our components. We will update the documentation to avoid such confusion.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi luis,
If you are using
jqwidgets-scripts
orjqwidgets-framework
this will be available in the next release.
If you are usingjqwidgets-ng
it is available already.I strongly suggest you to switch to
jqwidgets-ng
if you do not use it already. It always have the latest updates and fixes.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 8, 2019 at 3:05 pm in reply to: How to access component methods after using createInstance? How to access component methods after using createInstance? #103435Hi stackoverflowisbetter2,
For events:
const variable = jqwidgets.createInstance('#lineitems-grid-container'......
variable.addEventHandler('eventName', event => { // Do something... })
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/January 7, 2019 at 9:08 am in reply to: How to access component methods after using createInstance? How to access component methods after using createInstance? #103404Hi stackoverflowisbetter2,
When you create the instance, you must assign it to a variable, and through that variable, you can call methods and change props.
const variable = jqwidgets.createInstance('#lineitems-grid-container'......
variable.updatebounddata();
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/July 27, 2018 at 5:57 am in reply to: Angular 4 HttpClient and jqxGrid Angular 4 HttpClient and jqxGrid #101264Hi ejdesimone,
Thanks for the feedback, we will consider both your points. As for your issue, aren’t my above posts help you?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/June 29, 2018 at 2:38 pm in reply to: Visual Studio 2017 and Angular Template Visual Studio 2017 and Angular Template #100797Hi mjcee,
Can you please share the project as a
rar/zip
file(without thenode_modules
)?Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/June 29, 2018 at 1:25 pm in reply to: Angular 6 using JQXGrid in the component of sub module Angular 6 using JQXGrid in the component of sub module #100796Hi All,
Please check my post here:
https://www.jqwidgets.com/community/topic/angular-karma-jasmine-unit-tests/#post-100795Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/June 29, 2018 at 1:23 pm in reply to: Angular karma / jasmine unit tests Angular karma / jasmine unit tests #100795Hi caseybelcher543,
For start, this test is done on a fresh install of
create-jqwidgets-angular-app
.
Modifications:1. In
tsconfig.spec
in theinclude
property you must add"../node_modules/jqwidgets-scripts/jqwidgets-ts"
.
Should look like that:.... "include": [ "**/*.spec.ts", "**/*.d.ts", "../node_modules/jqwidgets-scripts/jqwidgets-ts" ] ....
2. Write a test(
app.component.spec.ts
file):import { TestBed, ComponentFixture } from '@angular/core/testing'; import { AppComponent } from './app.component'; import { jqxGridComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxgrid'; describe('AppComponent', () => { let fixture: ComponentFixture<AppComponent>; beforeEach(() => { TestBed.configureTestingModule({ declarations: [AppComponent, jqxGridComponent] }); fixture = TestBed.createComponent(AppComponent); }) it('should columngroups text be Product Details', () => { expect(fixture.componentInstance.columngroups[0].text).toBe('Product Details'); }); });
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/May 29, 2018 at 7:32 am in reply to: Are there any typescript typings for the react widgets? Are there any typescript typings for the react widgets? #100345Hi jluki07,
We don’t have official typings for
react
, but you can get thejqwidgets.d.ts
file located injqwidgets-ts
folder and refactor it to be used withreact
. You have all the interfaces there so just remove the angular specific code.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/April 17, 2018 at 8:10 am in reply to: jqxDockingLayout Angular2 bugs in content jqxDockingLayout Angular2 bugs in content #99747Hi akshay,
Sorry, but we don’t have proficiency with that technology.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/April 17, 2018 at 8:08 am in reply to: jqxTree : cannot unselect value jqxTree : cannot unselect value #99746Hi Liam,
Glad you managed on your own 🙂
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi lebarillier,
As said in the error this is loader related.
Try using this loaders: (ofcourse install their NPM packages before)loaders: [ { test: /\.ts$/, use: ['awesome-typescript-loader', 'angular2-template-loader'], exclude: [/\.(spec|e2e)\.ts$/] }, { test: /\.html$/, use: 'raw-loader' }, { test: /\.css$/, use: ['to-string-loader', 'css-loader'] }, { test: /\.(jpg|png|gif|svg|pdf|ico)$/, use: [ { loader: 'file-loader', options: { name: '../[path][name].[ext]' } } ] } ]
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/- This reply was modified 5 years, 1 month ago by Ivo Zhulev.
-
AuthorPosts