12220 comments found.
Are you gonna release today or in a few days?
Hi
,
Yes, it should be released shortly. We have submitted it for review.
Thanks.
Hello, we have been using the template for a year, on desktop we do not have any problems thankfully, but for mobilsite sign-up page loading is more than 6-7 seconds
. we got our theme updated btw. is there any way to get our sign-up page faster? is it related with kendos?
Hi,
Is there any ways that we can check your slow page in action ? By right the page itself should load as normal unless you have some background process behind it. Could you please provide us more details ? Do you use KendoUI ?
Thanks.
We have two domains when you click the sign up button the loading speed sometimes it takes more than 10 seconds, sometimes it gets time outs. it lands to our metronic theme (the problem occurs in mobilesite) i can share the website if you can reach me gokhanmufit@gmail.com
Hi,
Please contact our support at support@keenthemes.com and provide your license key as well since our support is provided only to verified buyers with active support subscription.
Thanks.
since its been more than a year that we have been using the template our support subacription is passive is it possible to activate it?
You can active your support if you want the theme support with following policy: https://keenthemes.com/theme-support/
You can contact our support and provide more details. If the problem is related to the theme then our support will help you out.
When are you going to release next major version please?
and also, are you going to implement email app template and file upload managers in the new release???
Hi,
It’s almost here. Yes, we’ve designed a huge amount of Applications. It will take some time to code and we will start releasing them after V6 is launched.
Thank you.
hey, I undestand that neither email app or file upload manager will be included in the next release but maybe in the V6.1 few months later, right? correct me if I’m wrong. last point: I’ve sent you an email to have information before buy (which has been transformed in ticket =/ ), it s very important & urgent. thanks
Hi
,
Sure, we will reply you shortly. Could you please let us know your email ? The mail and other apps will priority for us after releasing v6.0 today. However we can’t confirm any timeline for those features. We will do our best to release them. Stay tuned!
Regards,
Hello, I purchased this theme about 3 months ago. I have not downloaded it at all but the support is only 2 months left. May I know if the support can be extended given that I have not downloaded it? Thank you.
HI
,
Very sorry for the late reply.
You can download the theme anytime you want. The expiration only for the theme support. That means while your support subscription is active you can contact our support and get help if you have any theme related question. However the theme itself will be always available for you to download.
Thanks.
I have an Admin template before, and I used it for a long time. I’m considering to buy another, and your template look good. But I just can see only the dashboard page, I don’t know why. I hope I can see all sub pages before I purchased your template.
Hi
,
Thanks.
You will release the update today like you said before?
Hi
,
We are preparing it for release now. We can’t confirm exactly which day but we are almost there. Stay tuned!
Thanks.
nice work
Thanks a lot 
Hi, I am using metronic 5 default version, and I want to use Expandable search bar, Kindly assist me ASAP.
Hi,
You can use our online layout builder. Go to https://keenthemes.com/metronic/preview/?page=builder
1) Header > Search Type, set to Expandable Search
3) Click Preview button.
4) Then you can download the HTML partials for that settings
Thanks
I am using metronic v5.5.5, above given url is not valid. Kindly assist me how can I add expandable search rather than dropdown search.
Hi,
Please check on this code. And replace for existing search icon, under div id=m_header_topbar
https://gist.github.com/KeenthemesHub/31661576d642ae646161dff9c0b454ffThanks
Hi there, how to set filtered data from AJAX into mDataTable, please? I’m trying something like this, but nothing happens. Thanks.
$("#m_form_status").on('change', function () {
$.ajax({
url: 'posts/raw-data',
type: 'get',
data: {status: $(this).val()},
}).done(function (data) {
datatable.setDataSourceQuery(data);
datatable.load();
});
});
Hi 
Please check this demo file. We have example to do filtering in remote server.
/theme/default/src/js/demo/default/custom/crud/metronic-datatable/base/data-ajax.js
To call filter by column
$('#m_form_status').on('change', function() {
datatable.search($(this).val(), 'Status');
});
Thanks
I can’t download, it’s always stuck at almost finished
Solved.
Great! Glad to hear that 
is it just templates and is it programmed ?
because I’m apps developer and I don’t have good experince in web languages so I want to build admin panel connect with mysql database for example add data , delete , update and read data.
is it easy for beginner ?
is it support upload files to server ?
Hi
,
If you need any further clarifications please let us know.
Thanks.
In fact, I want to buy it because it is really unique , I have some questions
1- Do I have the permission to sell your control panel after I have programmed it with my applications on Codecanyon ?
2- Can I use it with all my apps or just one application ?
3- Can I share your template with another developer to program it from scratch ?
Hi,
1) No, you will not be allowed to use Metronic in your item that is sold in any marketplace.
2) No, one license is limited for single usage(one project/client).
3) During your development you can share the code with your team members, there is no issue.
If you need any clarifications please let us know.
Thanks.
ok I have good experince in php if I buy it now I can publish your source code with my app because buyers need admin panel with app
Hi,
You will need our permission to sell Metronic as part of your stock item. Regular or extended license are limited for one single usage(project/domain/client). For more info please contact our support at support@keenthemes.com
Regards, Sean
Hi there, how can I search for specific date range in mDatatable, please? Thanks!
Hi,
Currently local filter for date range is not yet supported. But, you can do date range filter using remote data source and API, by passing filter input of date value and filter in the server before passing back to the datatable. You mayb refer to our example for remote data source.
Thanks
Hi, thanks for the answer. Unfortunately, in your remote data src there’s no any example of server filtering. Could you be so kind to post any refered by Laravel, please? Thanks.
Hi.
We have example of server filtering. Please check this file. /theme/default/src/js/demo/default/custom/crud/metronic-datatable/base/data-ajax.js
This code will trigger the filtering.
$('#m_form_status').on('change', function() {
datatable.search($(this).val(), 'Status');
});
And then the server should received the parameters, and resend back the filtered records.
This is the example of our backend API script, written in PHP. /docs/api_reference/datatables/demos/default.php
For in case of Laravel, you can use laravel route URL to serve as the datatable API. In your Laravel controller, read the parameters that sent from datatable, filter records from Laravel and populate the API response.
Thanks
Hi there, thanks for your answer.
I just wonder how to “connect” my controller with mDatatable?
$("#m_form_status").on('change', function () {
$.ajax({
url: 'posts/raw-data',
type: 'get',
data: {status: $(this).val()},
}).done(function (data) {
$('#m_form_status').on('change', function (data) {
datatable.search(data);
});
});
});
Controller:
public function rawData(Request $request) {
$posts = Auth::user()->posts();
if ($request->status) {
$posts = $posts->whereIn('status', $request->status);
}
return $posts;
}
Hi 
Please go to this link, and look for the Ajax Response section at below for the sample of API response structure; https://keenthemes.com/metronic/?page=docs§ion=datatable
This sample response should be populated by your rawData() function, and return it as JSON response. Please check this; https://laravel.com/docs/5.8/responses#json-responses
In your laravel, you could create a router, something like this to call the rawData function via router.Route::post('/datatable/api', 'YourController@rawData ');
Sample URL would be;
httpL//localhost/datatable/apiPlease check this file to get a sample of datatable with remote datasource.
/theme/default/src/js/demo/default/custom/crud/metronic-datatable/base/data-ajax.jsChange the columns option, and the URL to match if your controller’s router URL.
Read the $request to get the params for pagination, filter, sort, etc. Use var_dump($request) to see inside the variable.
Thanks
Hi, thanks for explaining. I set it like this, but on change of input no data has changed in the mDataTable.
How to send data from JS to Controller and vice versa, please?
return response()->json(['data' => $posts]);
JS:
var posts = function () {
var datatable = $('.m-datatable').mDatatable({
data: {
type: 'remote',
source: {
read: {
url: 'posts/raw-data',
...
----------
$("#m_form_status").on('change', function () {
$.ajax({
url: 'posts/raw-data',
type: 'get',
data: {status: $(this).val()},
}).done(function (data) {
datatable.search($("#m_form_status").val(), 'status');
datatable.reload();
});
});
console.log(raw) in data.source.read.mapDefault:
(6) [{…}, {…}, {…}, {…}, {…}, {…}]Searched:
{0: {…}, 1: {…}, 5: {…}}
Hi 
It should be in array like your “Default” above.
The “Searched” one is not in array but as object. Maybe in your rawData() controller, before passing the data or before convert JSON, you could try to convert it as array.
return (array) $data;
Thanks
All works great now. Thanks for your assistance! Have a nice day.
Great! All the best with your project 
Hello there, could you be so kind to add the in-range filtration (like between two dates) for the KTDatatables? Right now I’m using custom server filtration, but it has many bugs and loading time is terribly higher. Thank you so much! 
Thanks for the suggestion. We will consider it 
how can i download old version (4.x)? this not included in actually download
Hi,
You will be launching this week .
thanks
We are doing our best! 
Hi, My question is that, I am using Metronic theme, and using datatable but I am having issue in Date sorting in datatable, Date are unable to sort properly in ascending or descending order .
I have also emailed you on your support but you didn’t reply.
kindly assist me in this query ASAP
Hi,
In the column option you can pass the column’s type and format, so the datatable can recognize it as date. If it does not work, could you please show us your date value?
{
field: 'hire_date',
title: 'Hire Date',
type: 'date',
format: 'MM/DD/YYYY',
},
Thanks
Hi
Metronic 5.5.5 – Angular 6
When the user is logged in and opens site.com/login, the site does not load. How should we solve this?
Thanks
Hi,
Was there any JS error in the console log?
Thanks
Can you please show me where I can find the code for the charts? I cant find where they are in the folder
Hi
,
Could you please contact our support at support@keenthemes.com and provide more details, such as, which chart plugin are you working with and which chart you are referring to ?
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.
No one else really believes you’re going to release version 6 any time soon. Metronic is a great template, but, as I said before, after so many deadlines, I do not trust my projects on it anymore.
Hi,
We are now doing the final testing and preparing for release. Once we release this super huge update we will be more accurate confirming on the future deadlines. Apologize for the inconvenience.
Thanks.
希望添加ajax上传的回显UI,模板中没有这方面的UI,希望添加。
Hi,
Could you please write your question in English ? We tried to use Google Translate but the meaning of your question was not clear to us.
Thanks.
How to split/exclude bootstrap4 css and js from the bundles? I use yii2 framework that has include dependency for bootstrap4.
Hi,
The build uses bootstrap sass files in order to customize original bootstrap styles and provide customized look and feel.
Best way is to exclude bootstrap from yii framework build and rely on Metronic’s assets.
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.