jQWidgets Forums
Forum Replies Created
-
Author
-
Thanks for your answer, Peter. We already use the Combobox with autoComplete=true which works fine but needs one more click than autoComplete=auto. Our customers would like to have the auto property for their workflow.
Do you recommand to change to Smart UI? We have a whole project with jqWidgets, so it would be lot of work to change everything. There is no other problem with Smart UI than this. Is it possible to use only the comboBox from Smart UI and getting the same look as in jqWidgets?Thanks, Hans-Martin
August 28, 2020 at 2:13 pm in reply to: jqxNumberInput – val() in combination with decimalSeparator Comma Error jqxNumberInput – val() in combination with decimalSeparator Comma Error #112868August 27, 2020 at 9:03 pm in reply to: jqxNumberInput – val() in combination with decimalSeparator Comma Error jqxNumberInput – val() in combination with decimalSeparator Comma Error #112855Yes it is still existing with 10.0.2. However, we now use getDecimal and setDecimal instead. Only the documentation is not really telling, what this functions do.
June 16, 2020 at 6:05 am in reply to: Change in jqxNumberInput.js – licence violation? Change in jqxNumberInput.js – licence violation? #112240Thank you for your answer. So I hope you will fix the issue soon. It’s really disturbing.
Hans-MartinStill not fixed up to now. Can we expect a fix?
February 6, 2019 at 2:52 pm in reply to: jqxMenu issue with Angular routerlink and image jqxMenu issue with Angular routerlink and image #103883jqxMenu.minimize() does not seem to work together with Angular routerLink.
I used your example above, only adding some code to app.components.ts to start the menu minimized. It works, if I comment out the this.jqxMenuTest.minimize(); statement. But it stops working if I minimize. Did I miss something?import { Component, ViewChild, AfterViewInit, ViewEncapsulation } from '@angular/core'; import { jqxMenuComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxmenu'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['app.component.css'], encapsulation: ViewEncapsulation.None }) export class AppComponent implements AfterViewInit { @ViewChild('jqxMenuTest') jqxMenuTest: jqxMenuComponent; ngAfterViewInit() { this.jqxMenuTest.minimize(); } }
-
AuthorPosts