12220 comments found.
Hey there,
I have a problem with the managed datatables, whenever I change the table id and/or add a column the search box and the paging buttons disappears. what is the problem?? 
and why the Export to Excel, CSV, PDF plugins don’t work?
Hi
,
Whenever you change any ID or columns of existing tables you will need to modify the table’s initialization JS code accordingly. For more details please refer to table-managed.js file where the managed datatables samples are initialized. The tabletools(excell, csv, pdf) should work as expected if there is no JS error on your page.
For more info you can check https://datatables.net/ and https://datatables.net/extensions/tabletools/
Also you should use chrome’s dev tools or firefox’s firebug tools to debug your pages for JS errors. For more info on debugging pages please refer below:
https://developer.mozilla.org/en/docs/Debugging_JavaScript https://developers.google.com/chrome-developer-tools/docs/javascript-debuggingThanks.
Thanks for the quick response. but the table tools are not running in the downloaded files theme/templates/admin/table_managed.html, not my website
Hi
,
You should run the theme from a webserver. If you open it directly from a file most of features will be available. This is a browsers limitation. Please try to open the theme from localhost(development web server).
Thanks.
is Frontend corporate theme connect to do in your metronic admin panel with full functions (like change slider ,footer ,header) thnx
Hi
,
No, Metronic admin is not a fully functional CMS or admin panel. Its just an HTML theme(skin) that can be used to develop a custom web applications from scratch.
If you have any further clarifications please let us know.
Thanks.
Hi 
I’m going to ask a strange question but… It’s possible to have a drop-down list with more than 10 000 records ? How can I process it quickly please ?
Thanks in advance !
Hi
,
Having 10000 records in dropdown is not practical and user friendly since it can be very hard for a user to scroll the list and find and select an option. I would suggest you to use autocomplete dropdowns(typeahead) – http://www.keenthemes.com/preview/metronic/theme/templates/admin/components_form_tools.html. For more info you can check the typeahead plugin’s official doc here: https://twitter.github.io/typeahead.js/
If you need any further assistance please let us know.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
How can I create icons that when hovered they show the text as seen on the “Trending” icon on this page:
http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469I will greatly appreciate your help
I would prefer to achieve this with pure html5 if possible but js/jquery is acceptable
Hi
,
Thanks for your feedback.
At the moment this feature is not implemented. But we will consider it in a future release.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Hi,
is there a possible way to have the new “Profile” page with the default black/red Admin theme (the first one) ? The blue style doesn’t fits the design well.
Thanks!
Hi
,
Sure, you can load the default theme color in the profile page by changing the theme css from:
<link href="../../assets/admin/layout/css/themes/darkblue.css" rel="stylesheet" type="text/css" id="style_color"/>
to:
<link href="../../assets/admin/layout/css/themes/default.css" rel="stylesheet" type="text/css" id="style_color"/>
If you need any further assistance please let us know.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Yeah, I did, but it’s only white whole, and it doesn’t look nice..
This is without “page-container-bg-solid” class with default.css http://prntscr.com/5hlq4a
This is with “page-container-bg-solid” class with default.css http://prntscr.com/5hlqfo
The first just looks like texts everywhere -> everything white The second is in blue style with default.css and that doesn’t make sense..
Hi
,
The profile page is build with light portlets(with white bg color) so you will need to have solid color background(through “page-container-bg-solid” class). When you change the theme css to “default.css” it will change the layout color scheme only. Is this what you are trying to do ? Or please provide us more details.
Thanks.
Hello
,
Well, simplified, I use deafult layout, but the new profile http://prntscr.com/5hs631 has lightblue background and I don’t think it’s correct. And I can’t find any way in your examples of the new profile with default layout.
As you can see the lightblue background doesn’t look nice 
Thanks!
Hi
,
Thanks for the clarifications. Actually you can change the content’s bg color using below code in your custom.css:
.page-container-bg-solid .page-content {
background: #EAEAEA;
}
If you need any further assistance please let us know.
Thanks.
Thanks! Love your support 
You are welcome. Good luck with your project! 
Hi, I need to add 3 search field at the header of table “sample_3”. Now there is only one.
I have already tried by adding – in table-advanced.js -:
$(’#search2’).on( ‘keyup’, function () { table.search( this.value ); } );
but isn’t functionally. Why?
Hi
,
Please try:
$(’#search2’).on( ‘keyup’, function () { table.search( $(this).val() ); } );
For more info please check the datatable’s search API:
https://datatables.net/reference/api/search%28%29Thanks.
Hi, thanks for your support but isn’t functionally. I have read the search API but ins’t functionally in metronic datatable sample_3.
I insert the code in file table-advanced.js in var initTable3 = function () { ... }
I do well?
Hi
,
Noted. Please check our further reply from our support email.
Thanks.
The support is very slow and is not helping me at all!
Hi,
We just replied to your email. Please kindly check it
Thanks.
I’m waiting your reply from 24 hours! Do not tell lies!
Hi,
The above confirmation comment was posted right after replying to your previous email. Now we attended to your next email and just replied. Please kindly check it.
Thanks for your patience.
Hello,
Considering this beautiful admin theme. Are you able to edit HTML pages within this template, similar to GoDaddy’s Page Builder?
Thanks!
Hi
,
Thanks for your feedback. To edit the templates you will need to use normal code editor. The page builder is not supported.
If you need any further clarifications please let us know.
Thanks.
Tabs load content with Ajax is this possible and if so how? or when this function appears.
Greetings Gert
Hi
,
At the moment this feature is not supported yet. But we will consider implementing it in a future release. In the main time you can check http://jsfiddle.net/adrienne/La2765jn/.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Hi, How i can know what’s the available icons like fa-xxxx icon name please tell us
Hi
,
Thanks for your feedback. All available icons can be seen here:
http://www.keenthemes.com/preview/metronic/theme/templates/admin/ui_icons.htmlTo stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
http://www.keenthemes.com/preview/metronic/theme/templates/admin3/form_fileupload.html
How can I make a mass action over loaded and checked files (except for the removal)? For example unzip in PHP script?
I understand that the File Upload widget is not your development, but maybe you can help me?
Other mass actions on the files, I think will be useful to other people.
Have a nice day!
Best regards, Igor
Hi
,
Sorry, the server implementation of the used plugins is not covered by our support. I would suggest you to check further the official doc of the plugin and refer to the issue list in the plugin’s github page.
If we can help you with anything else please let us know.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Hi,
Regarding the charts, I was wondering if can also use chartjs in our design or it is only limited to the charts you offered in the template? Thank you.
Hi
,
Thanks for your feedback. We will consider it in a future release. By right you can use any chart plugins and there is no limit for using other chart plugins. At the moment we have just a few of them integrated. In the future we will add more chart and other plugins.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Hi,
We are using the AngularJS version of the template and now we have problem with the tree view. I am wondering if you could comment on this issue? how we can have both features side by side?
Thanks
Hi
,
If you need to use the plugin with AngularJS scope then you can check below links related to angularjs and jquery integration:
https://amitgharat.wordpress.com/2013/02/03/an-approach-to-use-jquery-plugins-with-angularjs/ http://henriquat.re/directives/advanced-directives-combining-angular-with-existing-components-and-jquery/angularAndJquery.htmlTo stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Hi, I have seen full new template but i cannot find image gallery. The problem is that portfolio does not address my needs appropriately. I need to show both the picture and a short description in the same box. But with the current version I need to click on the portfolio to see the corresponding description and it is very hard for user to search all the figures.
Thanks
I need sth for “people dictionary” to show both picture and description such that when the mouse is pointing to one of them, that box becomes highlighted.
Hi
,
Thanks for your feedback. We will take your request as a feature request and consider it in the future releases. If you need it urgently i would suggest you to implement it as we do not take individual comment for each feature request but we will do our best for that.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
purchase code?2b9eaa76-3fa3-4641-8e8d-70fac-617439c user?junhua2014 Please give me a return authorization to lulidong this account
Hi,
We are as author do not have any control over this issue. If you having an issue with accessing to your account then you will need to contact Envato support(the company who operates themeforest.net) by creating a support ticket using below link:
https://help.market.envato.com/hc/en-us/requests/newThanks.
it’s too slowly download from amazon aws in china,,,
Hi,
We are as author do not have any control over this issue.
You will need to reach Envato support(the company who manages themeforest.net) by creating a support ticket using below link:
https://help.market.envato.com/hc/en-us/requests/newThanks.
@giovkanata, yes you are right, you missed it in the docs, please refer to Change Log ( Item 14) in the Documentation.
metronic_v3.x.x/_documentation/admin/
where x is your correct version number.
I hope this helps
@Keenthemes, I feel it’s best to indicate it as a footnote of the “Latest Update” in details page. This question is coming up to often.
Hi
,
Noted. We will consider it in the next update.
Thanks.
The template is really great and maybe I’ve missed something in your docs but it would be really helpful and professional if you could also include the details of the changes in every update (or at least which files has been changed), because, as instance, a simple “Fix: Minor Bug Fixes” it’s too generic and not so useful without knowing which bug was resolved and where. Let me know what do you think about. Thanks
Hi 
Thanks for your feedback. We will take your suggestion into account in a future releases. However for the “minor” bug fixes its safe to update those global files easily.
If you have any further clarifications please let us know.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
@Simua thank you very much indeed, I’m working too much in the last period and my eyes start to see much less
@Keenthemes apologize for the oversight
You are most welcome
Let us know if you need any further assistance. Good luck with your project! 
how can i put checkbox (on.off) instead the V icon of collapse. i want checkbox button that if its check the portly collapse and if its uncheck its expand.
Hi
,
You will need to put a checkbox input with “checkbox” class in the portlet header under “tools” DIV and apply below JS code to handle the checkbox: You can add below code under your custom.js or on document ready event in the bottom of your page:
$('body').on('change', '.portlet > .portlet-title > .tools > .checkbox', function(e) {
e.preventDefault();
var el = $(this).closest(".portlet").children(".portlet-body");
if ($(this).hasClass("collapse")) {
$(this).removeClass("collapse").addClass("expand");
el.slideUp(200);
} else {
$(this).removeClass("expand").addClass("collapse");
el.slideDown(200);
}
});
Thanks.
<input type="checkbox" class="checkbox">and added the JS code to the bottom of my page. not work
Hi
,
Sorry, there was a small issue with the prev code. Please try below one instead:
$('body').on('change', '.portlet > .portlet-title > .tools .checkbox', function(e) {
var el = $(this).closest(".portlet").children(".portlet-body");
if ($(this).is(":checked")) {
el.slideUp(200);
} else {
el.slideDown(200);
}
});
Thanks.
thanks again, but its still not fine, cause i must change the class to “checkbox” and then the make-switch class disappear.
If you are using bootstrap switch then you can change the “checkbox” class in the JS code to “make-switch”.
not working
i changed
$('body').on('change', '.portlet > .portlet-title > .tools .checkbox', function(e) {
to $('body').on('change', '.portlet > .portlet-title > .tools .make-switch', function(e) {
and changed the checkbox class to make-switch.
its not collapse.
Hi
,
Try to use below code:
$('.portlet > .portlet-title > .tools .make-switch').on('switchChange.bootstrapSwitch', function(event, state) {
var el = $(this).closest(".portlet").children(".portlet-body");
if (state) {
el.slideUp(200);
} else {
el.slideDown(200);
}
});
For more info please check the boostrap switch’s event API:
http://www.bootstrap-switch.org/events-3.html
Thanks.
Amazing!!! its work. thanks
Great! Good luck with your project! 
How do I fix the BOXED-LAYOUT in [admin] template?
Hi
,
To learn how to setup the boxed layout you can refer to layout_boxed_page.html template.
If you need any further assistance please let us know.
To stay updated on Metronic’s new releases please follow us on http://twitter.com/keenthemes.
Thanks.
Hello I inserted inside a table a few buttons type dropdpwn, just that when I explode the dropdown seems to go below the cells, there is a class to avoid this problem of z-index? tnx 
Hi
,
What version of Metronic are you using ? If you are using v3.x then you can follow below instruction.
By default the datatable is wrapped with scrollable DIV so it cuts off the overflow part. As a workaround you can disable that scrollable wrapper DIV by passing a special layout setting for your datatable:
var table = $('#sample_1');
table.dataTable({
"dom": "<'row'<'col-md-6 col-sm-12'l><'col-md-6 col-sm-12'f>r>t<'row'<'col-md-5 col-sm-12'i><'col-md-7 col-sm-12'p>>",
"lengthMenu": [
[5, 15, 20, -1],
[5, 15, 20, "All"] // change per page values here
],
// set the initial value
"pageLength": 5,
});
For more info please refer the comments in assets/admin/pages/scripts/table-managed.js
If you need any further assistance please contact our support at support@keenthemes.com
Thanks.
thanks I try now and update as soon as possible…