Forum Replies Created
-
Author
-
April 5, 2018 at 7:23 am in reply to: Cancel button event for undo the changes in Grid Cancel button event for undo the changes in Grid #99600
Hi shakti_singh,
Please look at this demo:
https://www.jqwidgets.com/angular/angular-grid/angular-grid-statemaintenance.htmI also encourage you to check the widget docs, demos, and API.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/April 4, 2018 at 8:29 am in reply to: undefined properties in jqwidgets.d.ts undefined properties in jqwidgets.d.ts #99585Hi rjwijnen,
We will release an update when Angular Team release v.6.0.0(which must happen today).
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/March 30, 2018 at 10:29 am in reply to: Error when creating jqxSlider dynamically inside a grid in production version Error when creating jqxSlider dynamically inside a grid in production version #99500Hi, andrea,
This has something to do with the AOT compilation.
For now, use the commandng build –prod –env=prod --aot=false
.We will investigate further.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/March 16, 2018 at 6:00 pm in reply to: undefined properties in jqwidgets.d.ts undefined properties in jqwidgets.d.ts #99279Hi areisyus,
We will consider this. As for the update, its expected to be in the end of the next week.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/March 16, 2018 at 10:29 am in reply to: angular2 jqxGauge responsive width and height angular2 jqxGauge responsive width and height #99262Hi timhortons,
Don’t worry about this, it won’t affect you. We will fix it soon.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/March 13, 2018 at 11:46 am in reply to: jqwidgets.d.ts has changed jqwidgets.d.ts has changed #99178Hi genfu,
Thanks for the report! This will be fixed as soon as possible!
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 27, 2018 at 9:39 am in reply to: jqxTree, ERROR TypeError: Cannot read property 'length' of null jqxTree, ERROR TypeError: Cannot read property 'length' of null #98915Hi barboza,
Thanks for the report. This will be considered and if approved, added in the next release!
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 22, 2018 at 5:31 pm in reply to: Jqwidgets percentagewise width not working with Angular-5 Jqwidgets percentagewise width not working with Angular-5 #98888Hi Bhavin,
Yes, the string values must be put in double quotes in the template:
"'someString'"
.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 22, 2018 at 5:19 pm in reply to: jqxButton is not rendered properly in dialog window jqxButton is not rendered properly in dialog window #98887February 22, 2018 at 5:17 pm in reply to: jqxRibbon is not displayed correctly jqxRibbon is not displayed correctly #98886Hi Liam,
Do you mean this:
https://angular.io/guide/dynamic-component-loaderBest Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 21, 2018 at 9:17 am in reply to: formatString in jqxDateTimeInput formatString in jqxDateTimeInput #98834Hi gudboisgn,
Thanks for the report. We will fix this shortly.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 20, 2018 at 11:32 am in reply to: jqxFileUpload with extra Data jqxFileUpload with extra Data #98817Hi narayan,
This widget is made for uploading only files, not data. If you need to send some data, just use the angular http service.
If you need to upload some file and some extra data with it, then either use thejqxFileUpload
widget and the angular http service together, or put the extra data in the file itself.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 20, 2018 at 11:26 am in reply to: addfilter in grid in popup addfilter in grid in popup #98816Hi lebarillier,
Yes, try calling the open of the window in a promise.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 20, 2018 at 11:23 am in reply to: angular2 jqxGauge responsive width and height angular2 jqxGauge responsive width and height #98815Hi timhortons,
In order to make this work you must do this things:
app.component.html
<div id="gaugeContainer"> <div id="gauge"></div> </div>
app.component.ts
import { Component, ViewChild, AfterViewInit, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styles: [<code></code> html, body, #gaugeContainer { width: 100%; height: 100%; } <code></code>], encapsulation: ViewEncapsulation.None }) export class AppComponent implements AfterViewInit { ngAfterViewInit(): void { const options = { width: '100%', height: '100%', ranges: this.ranges, ticksMinor: this.ticksMinor, ticksMajor: this.ticksMajor, labels: this.labels, style: this.style, caption: this.caption } jqwidgets.createInstance('#gauge', 'jqxGauge', options); } ticksMinor: any = { interval: 5, size: '5%' }; ticksMajor: any = { interval: 10, size: '10%' }; labels: any = { visible: true, position: 'inside' }; style: any = { stroke: '#ffffff', 'stroke-width': '1px', fill: '#ffffff' }; caption: any = { offset: [0, -25], value: 'jQWidgets', position: 'bottom' }; ranges: any[] = [ { startValue: 0, endValue: 90, style: { fill: '#e2e2e2', stroke: '#e2e2e2' }, startDistance: '5%', endDistance: '5%', endWidth: 13, startWidth: 13 }, { startValue: 90, endValue: 140, style: { fill: '#f6de54', stroke: '#f6de54' }, startDistance: '5%', endDistance: '5%', endWidth: 13, startWidth: 13 }, { startValue: 140, endValue: 180, style: { fill: '#db5016', stroke: '#db5016' }, startDistance: '5%', endDistance: '5%', endWidth: 13, startWidth: 13 }, { startValue: 180, endValue: 220, style: { fill: '#d02841', stroke: '#d02841' }, startDistance: '5%', endDistance: '5%', endWidth: 13, startWidth: 13 } ]; }
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/February 20, 2018 at 10:56 am in reply to: angular2 jqxGauge responsive width and height angular2 jqxGauge responsive width and height #98813Hi timhortons,
- This reply was modified 5 years, 1 month ago by Ivo Zhulev.
-
AuthorPosts