jQuery UI Widgets › Forums › Angular › Grid height.
Tagged: Angular, dynamic title for jqxwindow, grid column header right click event., grid height, jqxInput set value, jqxMenu, jqxslider, jqxwindow with angular5, submenu
This topic contains 35 replies, has 2 voices, and was last updated by Ivo Zhulev 7 years ago.
-
AuthorGrid height. Posts
-
Hi seenuvasanV,
What version of our product are you using?
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi Ivo,
This is the thing i’m using..
/*
jQWidgets v4.5.4 (2017-June)
Copyright (c) 2011-2017 jQWidgets.
License: http://jqwidgets.com/license/
*/Thanks.,
Hi seenuvasanV,
Please update to the latest version and try again. There are a lot of changes.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Can You pls give me any command line guideline to update to latest version???
Hi seenuvasanV,
I guess you are using
npm
. I recommend using this tool => https://www.npmjs.com/package/npm-check-updates.
Install it globally and then inside the folder your angular project is, typencu
. This will list all packages needed updating.
Follow the commands given, which will be eitherncu -u
,ncu -a
or both. This will update all packages to latest.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Thanks for yr help, and it was working now..!! Great..
Hi Ivo,
Everything is working fine. But able to display only static content. I’m unable to display the dynamic content..
for example.<div>{{WindowTitle}}</div>
This is not working. It wont throw any error. {{WindowTitle}} not binding. Maybe any timing issue is there???
My code is here in component:::
@ViewChild(‘windowReference’) window: jqxWindowComponent;
ngOnInit() {
this.WindowTitle = “Edit Window”;
}
ngOnChanges(changes: SimpleChanges) {
this.window.open();
}Hi Ivo,
Even, {{1+1}}, this simple expression also not getting evaluated..?
<div>New Window {{1+1}}</div>
Please update me, Your side everything is fine.???
angular/cli version::1.5.2
jqwidget version::5.4.0Hi seenuvasanV,
This has nothing to do with our product. It has something to do with the Angular stuff. I can be everything related to Angular.
I suggest you using the https://www.npmjs.com/package/create-jqwidgets-angular-app
Awaiting your response!Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi Ivo,
Thanks for Your response, angular stuff working fine in other part of the application. My complete window.component.html is:
<div>{{WindowTitle}}</div> –> This is working fine in the same html file..
<jqxWindow #windowReference
[autoOpen]=”false” [isModal]=”true” (onClose)=”editSpotWindowClose($event)”
[width]=”300″ [height]=”‘auto'” [position]=”{ x: 50, y: 120 }”>
<div #windowHeader> {{WindowTitle}} </div> –> This is not working..
<div #windowContent>
Some aspects attributed to the first RISC-labeled designs around 1975 include the
observations that the memory-restricted compilers of the time were often unable
to take advantage of features intended to facilitate manual assembly coding, and
that complex addressing modes take many cycles to perform due to the required additional
memory accesses…
</div>
</jqxWindow>outside of the <jqxWindow> tag it is working fine, within the <jqxWindow> tag only not working ….
Do you have any demo link to the angular {{}} inside the <jqxwindow>..
I go through below links from your site: I don’t find any {{}} dynamic bind there…
1) https://www.jqwidgets.com/angular/angular-window/angular-window-defaultfunctionality.htm
2) https://www.jqwidgets.com/angular/angular-window/angular-window-multiplewindows.htmHi Ivo,
Please tell me. <div #windowHeader> {{WindowTitle}} </div>
The way of define window title by this way is possible or not. I’m waiting for your reply..
Hi seenuvasanV,
No, this is currently not possible.
Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/Hi Ivo,
Thanks to Your reply. It was useful. I need one more help..
<jqxInput [(ngModel)]=”country”
[width]=”200″ [height]=”25″ [source]=”countries”
[minLength]=”1″ [items]=”3″>
</jqxInput>How to set default value to the jqxInput. If i set [val]=”‘Input Value'” , it will through error..
Hi seenuvasanV,
Use
[value]="'Input Value'"
.Best Regards,
IvojQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.