12220 comments found.
when would we get the vuejs update? any probable date ?
Hi,
We can’t confirm any date for VueJS yet. We will have some news after we release Metronic v6.0 with Angular 7 support. Stay tuned!
Thanks.
Just a suggestion… when the session timeout popup is triggered, if the user is busy elsewhere on their computer, the browser window doesn’t alert the user so that they can keep the session alive
Hi
,
Thanks for your feedback. This how the plugin works and it’s a 3rd party plugin we will see if we can configure it this way.
Thanks.
Hi, I updated from Angular 6 to 7, but noticed some changes (eg mat-card has no shadow). What extra steps do I have to take? Thanks!
Sorry, discard my question, I did overlook your earlier comment !
Hi
,
Sorry for the late reply. Noted. Let us know if you need any further help. All the best with your projects!
Thanks.
please is there any update soon? i need Demo 6 with angular 6
Hi,
We are releasing v6.0 soon with Angular 7 update. Please note that only the latest Angular version will be maintained at once since each Angular version has a lot of breaking changes. Stay tuned!
Thanks.
HI
I saw that you uploaded new updates today but it steel version 5.5 when the v6 will release?
Thank you for your updates 
Hi
,
Very soon. Just the testing and verification of v6.0 taking some time. It is almost ready for the release. Please stay tuned!
Thanks.
Please, add datatable modal editor (like here https://mdbootstrap.com/plugins/jquery/table-editor/) for a feature versions. It would be great!
Hi
,
Great suggestion. We will definitely consider this!
Thanks.
Hi, my question is I want to stick div in default metronic version so how can I stick div?
Hi,
Could you please clarify your question ? Which DIV you want to make as sticky ? Is it any DIV in the content or you are referring to the main action portlet: https://keenthemes.com/metronic/preview/?page=crud/forms/layouts/sticky-action-bar&demo=default
Thanks.
I want to stick any div in the content.
I want to stick any div in the content on certain scroll position. how can I do it?
Hi
,
It is not included in the theme but you can simply include it and start using. All the best!
Thanks.
Hi, really looking forward to the version for VueJS When will you make a release?
HI
,
We are doing R&D on this direction and there are should be news on this soon. Stay tuned!
Thanks.
Hi, Will you release the new demo for angular 6,7 soon?
Hi
,
We are planning to release v6.0 with Angular 7 in 1-2 weeks. Stay tuned!
Thanks.
Hy guys! Version 6.0 in this week? Please!!

Hi
,
We are almost there. Hopefully we will release within the next week. Stay tuned!
Thanks.
Hi – is there still a discount for amcharts – cannot find in current version download …
Hi
,
Can you email our support at support@keenthemes.com and we will provide you with the promo code.
Thanks.
How to have scrollable support for ajax loaded content? Is there something to handle this already?
Hi,
If you are using latest Metronic v5.x you can find scroller plugin API functions:
mUtil.scrollerInit('scroller_div_id'); // init scrollable div
mUtil.scrollerUpdate('scroller_div_id'); // update scrollable div after changing its content.
I hope the above info will be helpful.
Please kindly consider re-newing your support subscription in order to be able to request a support further. Currently your support subscription is expired and you will need renew it. If you need any further clarifications please let us know.
Thanks
Hi! I need to download the latest Metronic version 4 please… I know it does not have support and any more updates, but I can’t migrate to version 5 yet, where can I find it? =/ thanks!
Hi 
The latest version for v4 is v4.7.5. Please send an email with purchase code. We will send the download link to you.
Thanks
Is there a way to download the version I downloaded it in fall 2017. I need to do some changes and I dont see it in the demos you have now
Sorry I meant fall 2016
Hi 
What was the version at that time? v4.7.5?
Thanks
Hello!
Vue.js version has been in your upcoming list for a while. Is there any plan to launch this version anytime soon?
Thank you!
Hi,
Thank you for your interest in Metronic. Unfortunately, vue.js version will not be released anytime soon
We are working harder to make it available. Hopefully it will be released sooner.
Thanks
Hi
I can not find a child datatables in angular 6.
Thanks
Hi 
By default, DataTable and mDatatable does not supported for Angular. Both datatable is a jQuery plugin. The one with Angular is a Material, but does not support child datatables.
Thanks
I am using Metronic 5.5.5 for Angular. Your documentation states: “Angular source code can be found in [root]/theme/default/dist/angular/[demo_id]/.”
However under [root]/theme/default/dist there is no “angular” directory. Only default,demo2,demo3,etc.
Have I missed a step to build out these directories or something?
Hi 
Please check on this directory. /theme/angular/dist/default We will fix the path in the documentation.
Thanks
Hi , I am using your default Angular template and havent done anything custom on your theme.
The issue is that my data-bind is not working correctly when using http calls. So for testing I simply declared an empty array and assigned some data with a setTimeout about 3 seconds. But the assigned data didn’t show up in the UI. Sometimes it will work but in most cases it doesn’t. I tried using ngzone but it also didn’t help with the binding.
To test this issue i have created a new simple project using angular CLI and tried to reproduce the issue, but its working fine all the time without any issues, databinding just works fine no matter the delay.
Please let me know what may breaking the binding. (I am using your latest version this issue occurs only when ever i use your theme)
Hi,
This is because we used onPush change detection strategy. By disabling the binding, we can increase the performance. But need special function to call for the UI changes to take effect, instead of automatically update.
Please remove this directive option from the component to fix it.
changeDetection: ChangeDetectionStrategy.OnPush
In the next Angular version, we will take a look on this. Not all components are required for this feature.
Thanks
Hi, I have commented out the code still not working , i have increased the timeout to 5 seconds , it is taking about minute to show up in the ui. instead of 5 seconds
import { ChangeDetectionStrategy, Component, OnInit } from ’@angular/core’; import { Router } from ’@angular/router’; import { LayoutConfigService } from ’../../../../core/services/layout-config.service’; import { SubheaderService } from ’../../../../core/services/layout/subheader.service’;
@Component({ selector: ‘m-dashboard’, templateUrl: ’./dashboard.component.html’, //changeDetection: ChangeDetectionStrategy.OnPush }) export class DashboardComponent implements OnInit { }
public config: any;
testdata:any[]=[]
constructor(
private router: Router,
private configService: LayoutConfigService,
private subheaderService: SubheaderService
) {
// this.subheaderService.setTitle('Dashboard');
}
ngOnInit(): void {
let context = this;
setTimeout(function(){
alert("sd");
var p = [1,1,1,1,1,1];
context.testdata = p;
},5000)
}
This is my test code its taking way over time to bind to ui .. one of my api has longer time to return the data so . the binding is not working when the api return the data . to emulate this I have put it in Timeout please help me out.
Hi,
Can you please try to remove the change detection option in this component also?
/theme/angular/dist/default/src/app/app.component.ts /theme/angular/dist/default/src/app/content/pages/pages.component.ts
Thanks
After commending out in App and pages , Now its working fine, Thanks
Hi 
Glad it worked.
Thanks
Hi, When Can I get the Demo7 for Angular version? And I can’t wait for new version of the template.
Hi
,
Thanks for your feedback.
We are doing our best to release v6 in a few weeks in January. Stay tuned!
Thanks.
-30% promotion is already over? 
Hi
,
It’s still on. The normal price is 35$ and now you can purchase Metronic for 25$.
Thanks.
hey do you provide e commerce admin panel
Hi 
Thank you for your interest. We provide only the template with the a demo implementation.
The actual system implementation will be the responsibility of the buyers as every buyer has own requirements and system specification.
Thanks