12220 comments found.
Hi
When a V6.0 will be released.
Thanks.
Hi
,
We are about to release it and we will officially inform it in coming days. Please stay tuned!
Thanks.
Are there any forecasts for the release of the demo version 11 in angular?
Hi
,
In the next update(v6.0) we will be releasing Angular 7 version for all demos. Stay tuned!
Thanks.
how do I run a php to validate the login-3.html page? I have already put a php in the url of login.js, however the validation does not work. I am using version 5.5.5 in HTML.
Hi,
Sorry for this late reply. Please note that our support does not cover the server side integration questions. You can search the google for “Login form with php” topics to find related tutorials. For more info you can check our support policy: https://keenthemes.com/theme-support/
Thanks.
I’m reporting a bug with sweetalert2 maybe it’s fixed with latest release.
https://keenthemes.com/metronic/preview/?page=components/base/sweetalert2&demo=defaultWhen you fire a sweetalert2 on a long page with scroll bar, the alert will pop-up on the screen but it will scroll the page to the top.
The sweetalert2 pop-up should be displayed on the screen without scrolling the page to the top.
Steps to reproduce:
open https://keenthemes.com/metronic/preview/?page=components/base/sweetalert2&demo=default
reduce the size of the window so there is a scroll bar visible on the side scroll down
click on any of the “show me” buttons to trigger SweetAlert2
Page will scroll to the top rather than viewing in the middle of the screen without scrolling to the top
Hi
,
Thanks for your feedback. We will check this issue and fix it in the upcoming update v6.0 very soon. Stay tuned!
Thanks.
Hi,
We are trying to call an API when someone select a row in the Datatable. In order to select the particular row data we use following code - datatable.row(’.m-datatable__row—active’); datatable.nodes().each(function(i, row) { var data = $(row).data(‘obj’); } This code works perfectly fine. But once we add locked: {left: ‘xl’}, to lock the columns on the left. We found that there are two divs created with separate rows. Hence the code listed above doesn’t work because javascript obj doesn’t get created.
Please advice how to get jquery obj with row data when using locked column feature.
Thanks,
Hi,
Sorry for the late response. It seems this is a bug. We need to check and fix it. We will provide to you the fix soon.
Thanks
ok Thanks
any update on this issue? Our production release is onhold..
Hi,
We could not officially release the new updates yet. But in the meantime, you can use this datatable plugin file, included with all the fixes. https://gist.github.com/KeenthemesHub/9c77b0e0775b959091c008b49f641500You just need to place it in the original directory, /theme/default/src/js/framework/components/general/datatable/core.datatable.js and rebuild the assets.
Thanks
Thanks, I will try it. Will let you know if it works.
Hi, we are using demo7 theme, which does not include the path mentioned above /theme/default/src/js/framework/components/general/datatable/core.datatable.js
Below are paths available - <link href=”./assets/vendors/base/vendors.bundle.css” rel=”stylesheet” type=”text/css” /> <link href=”./assets/demo/demo7/base/style.bundle.css” rel=”stylesheet” type=”text/css” />
Hi,
By default, when you run gulp to compile. All css bundle in all demos will be recompile including demo7.
Thanks
We have not used gulp, is there any other work around to get it fixed
Following css files used - 1. /static/apptrade-metronic/demo7/assets/vendors/base/vendors.bundle.css?v=1.01
2. /static/apptrade-metronic/demo7/assets/vendors/custom/jquery-ui/jquery-ui.bundle.css?v=1.01
3. /static/apptrade-metronic/demo7/assets/demo/demo7/base/default.style.bundle.css?v=1.01
awaiting for your reply , Thanks
Hi,
In that case, you need to modify this js file content with the one I gave it to you. /theme/default/dist/demo7/assets/demo/demo7/base/scripts.bundle.js
Somewhere at the start line number 5547 to 8912.
Or you can send us your demo7/base/scripts.bundle.js file, we will help to update the datatable code for you.
Thanks
Hi, Please let me know on which email address i can email you the file, just found out that my application is using demo7/assets/demo/demo7/base/default.scripts.bundle.js And the file is minified hence cannot locate the line number Thanks
Hi 
When we reply your email, we got this error message. Please check your mailbox.
To: xxx.xxx@godigitaltc.com Message bounced - Temporary error We were unable to deliver the message to this email address due to connection issues with the remote server or the recipient’s mailbox is full. Please try sending the message again after some time.
Thanks
i will email back
please check support@keenthemes.com , i have mentioned email address to email the file. Thanks
Thanks. We will check your email and revert back to you asap.
Hi
We got similar error message when sending to new email
To: tausif.badu@gmail.com Message bounced - Temporary error We were unable to deliver the message to this email address due to connection issues with the remote server or the recipient’s mailbox is full. Please try sending the message again after some time. re Thanks
is it possible to upload the file on https://send.firefox.com/ ? or some other file sharing systems ?
i am surprise that u are getting issue sending it over my my gmail address
Hi 
You can use this code to get the row data for locked column.
datatable.on('m-datatable--on-check', function() {
datatable.rows('.m-datatable__row--active');
console.log(datatable.nodes());
datatable.nodes().each(function(i, row) {
var data = $(row).data('obj');
console.log(data);
});
});
The file link
https://send.firefox.com/download/24e36d870e/#MbHdIJD8Mv7nomgv3UVHQg
Thanks
Thanks , i tried replacing with the JS file which you had given. It indeed fixed the issue. Now I am able to get the required data from the row. But after applying the JS file it has broken the UI of the Datatable. I have emailed the screenshot. Thanks for helping.
Hi, sorry for the late response. We will get back to you through email.
Thanks
Hearing all these excuses about Angular 7 causing delays in v6 release – why don’t you just release the default html version for starters? many of us are just wating for the bare bones to be able to integrate in our own frameworks, so a default html version for starters would be perfectly okay, I guess?
Hi,
Thanks for your feedback. We are already working on releasing the whole v6.0. Our priority is releasing the stable and production ready update so please bear with us a little bit longer.
Thanks.
Hi, Using mDatatable – is it possible to make row headers in the middle of the dataset? for instance having a dataset grouped by date, where a new date inserts a tr with only the title showing in a td with colspan covering all columns?
Thanks
Hi,
Sorry, mDatatable does support this feature. You can try to use the DataTable like this example. https://keenthemes.com/metronic/preview/?page=crud/datatables/advanced/row-groupingThanks
Hi, We are using mDatatable for displaying records on a webpage. This datatable is refreshed every 2 mins with new data from API call. Code to refresh existing datatable with new data - datatable.originalDataSet = scannerData; datatable.reload(); We are seeing a recurring issue of mDatatable element originalDataSet missing error. In order to resolve this the web page has to be refreshed manually. Can you please help us? Thanks,
Hi,
Could you please clarify? What do you mean by “originalDataSet missing error”?
Thanks
Thanks for following up.
Following error shows up in Console.log - No mDatatable element exist.
Error is produce from file – default.scripts.bundle.js Below code throws out the error - e=a.options;return a}console.log(“No mDatatable element exist.”)},
After this error Datatable just hangs up in “processing” mode. It shows the processing gif icon.
In order to resolve this we have to manually refresh the entire webpage from browser.
Datatable is refreshed every 2 mins.
Hi,
Do you mean you just call datatable.reload() function in interval of 2 minutes. Then suddenly the error message (“No mDatatable element exist”) appear in the log?
Thanks
yes, you are right ..
any update?
Hi,
We tried to simulate this 3 seconds interval reload. No issue coming out in the console log. Do we did a similar condition to replicate it?
var datatable = $('.m_datatable').mDatatable({});
setInterval(function() {
datatable.reload();
}, 3000);
Thanks
when will you guys release the reactjs version?
Hi
,
Thanks for your feedback. We haven’t started the ReactJS development yet, we are still doing R&D. We will announce the ETA soon after we starting the development. Stay tuned!
Thanks.
How we can add borders to in metronic datatables?
Hi,
Could you please contact our support and provide more details ? How exactly do you want to customize it ?
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.
Are the licences domain based? I want to run an app hosted on my local server (using xamp). Is it possible?
Hi
,
You can use single license on your localhost or internet domain. One license is limited for single use. If you need any further clarifications please let us know.
Thanks.
Any date for a VueJS version ?
Hi
,
We are interested in releasing VueJS version of Metronic but we can not inform any date at the moment. When we have anything up we will announce it immediately. Stay tuned!
Thanks.
We were about to buy Metronic’s commercial license. Today I’m sure we’ve made the right choice in waiting for your promise to publish Metronic version 6 before you buy. Our project was paused waiting for this version. Today we know that we will no longer trust our project on the Metronic theme. A few months ago you promised the update for a few weeks and we waited all this time for not reworking, but those weeks became months and the act was delayed again, nor are we any more hopeful of seeing this version 6 so quickly. This would be our first project using metronic, and after that, many others would come, but today we made the decision not to trust the theme anymore and look for other options in the market to continue the project.
Hi,
We are very sorry that you feel that way. As we explained this delay caused due to some unpredicted issues related to some core Angular plugins that Metronic uses as base. We promised estimated date for the release since our development always depends on many 3rd party solutions. However we are working without a break to release this major update without major bugs and integration issues and we will be releasing this promised great update very soon. I hope for your understanding and wish you all the best with your projects.
Thanks.
Hi, I am planing to purchase Metronic, but we only need html5 and css3. In the package is there non-angular version is available? I mean when we buy this item can we use just htlm5 css3 boostrap version in the document files?
Hi,
Yes, it is included. You can get 3 types of source code version.
1) default version – HTML, jQuery, SCSS with build tools
2) classic version – HTML, precompiled CSS
3) angular version
Thanks
I could not have stated it better than @JimOQuinn . You’ve been saying that Metronic v6 will be out in a few weeks since the last quarter of 2018. I have literally put my project on hold waiting for Metronic v6 as implementing with v5 and then having to migrate to v6 would be an inefficient use of time.
It’s about time you provide your customers and potential customers with a realistic timeline for when v6 will be released. I know that sometimes projects can overrun, but baiting customers (current and potential) without any clear timelines only leads to a drop in customer confidence, which can result in your customers looking elsewhere.
Hi,
Thanks for the honest feedback and we’re very sorry you feel that way. As we replied in the previous comments we are dealing with some Angular 7 integration issues that came out last minutes. To make sure that the update will be smooth and stable we need some more time. I hope for your understanding.
PS: You can email our support regarding this and we will keep you updated.
Thanks.
Thanks for your swift response, much appreciated. Believe me, I understand your situation at the moment, so I’ll hang on a little bit longer. Hopefully, all those issues will be ironed out in the short to medium future.
Sure, we will do our best. Appreciate that 
Hello, nice work. When do you plan the development of compatibility with vuejs?
Hi
,
Thanks for your feedback. Probably in the near future we will release VueJS version. Stay tuned!
Thanks.
I like these guys a lot and they built a nice, but incredibly verbose, theme with V5. No issues with them at all. But, nothing wrong with being honest with your customers and level set expectations because I see lots of people waiting around for 6.0.
Given all my time spent with the V5 release, I’d like to relay my experiences:
- Since V6 is like V5, a major release, I expect the theme to be incomplete and buggy as are most “dot oh” releases. Nothing new here, everyone does this.
- It won’t be compatible with V5 at all, so unless they state otherwise, you’re in for a lot of re-work to upgrade. The ride from V4 to V5 was rather rough.
- Expect it to really start to shine around the 6.2 release about 4-5 months after the 6.0 release. By then the directory structure won’t change, the build process will be finalized, and upgrading each point release will be easier.
- You can expect the authors to “freeze” you for weeks to months by replying it’ll be out next week or within weeks. Reality is it can be months before it is released.
Again, love these guys, but many of us could use more transparency with what exactly we can expect in V6 and give realistic release timeframes.
Hi,
We appreciate your honest feedback and we’re sorry you feel that way.
During the Angular 7 integration we had to solve a lot of issues and we are still working on some new ones that came out recently. But the good news is all those issues can be solved and we are now working on it without a break to release v6.0 as soon as we can. Our only priority is to release this stable update with the new code base(not 100% new, just a slight restructured and improved version of the same base code). In this update we are doing a lot of design and performance improvements. Our base JS code is pure JS now(with no jquery dependency) which makes it easy to integrate with Angular, Vue and React in the near future. As we said, 95% of the work is completed and we will be releasing it soon(can’t promise any ETA but we are already doing our utmost best).
Thanks.
Hi,
Thanks for your feedback. May us know, where did you get this error? Can you please send the screesnhot? Was it in the remote layout builder?
Thanks
How to make a portlet sticky? I don’t want the header sticky I want all the portlet, imagine you have two portlet side by side I want one of them stay sticky when we scroll down. This is possible?
Hi
,
Thanks for your feedback. At the moment we do not have this kind of features but in the next update we will include it. Stay tuned!
Thanks.
V6 in this week?
Hi,
Unfortunately we have to inform you the v6.0 update will be a little bit delayed due to some unpredicted Angular 7 integration(related to some other core 3rd party plugins as well) issues and we are currently resolving them. However 95% of the work is done. Our priority is the stable update so we are doing our best to deliver it as soon as possible. We apologize for the inconvenience and hope for your understanding.
Thanks.