12220 comments found.
hi i need some help pls with the layout builder
i have entered my purchase code and able to export the files but then the issue is i don’t know where to put them??
http://keenthemes.com/metronic/preview/?page=builder&demo=defaulti’ve not yet made any changes to the folders i am using the the default theme metronic_v5.0.6.1/metronic_v5.0.6.1/theme/default/dist/default/
what i want is to make the side bar light instead of black and make side bar scroll able .
Can i not have the same icon layout builder in my admin theme
thanks
Hi,
The layout builder helps you to generate the HTML code according to your selected settings. Then you can replace the generated HTML code with the actual HTML code that comes with the theme. The source code of the theme and its build tools helps you to generated the assets while the layout builder helps with the HTML part then you can use both in your server side code in any way you want. Just make sure the assets path are properly set in the HTML code to properly load the css/js files. If you need any further clarifications please let us know.
Thanks.
Data table seems not to be sorting correctly dates, i am using
format: ‘DD/MM/YYYY’,
but, no right order is shown when sorting. is it a bug or something i am doing wrong?
Hi,
What is your date value is the datatable? The format option should match with your date value.
Thanks
Hello, my date value is also DD/MM/YYYY.
What I found is that it only works when the value received is in format MM/DD/YYYY, I made the change and it works perfectly, in fact, it works even if in the JS file i write format: DD/MM/YYYY.
Could you please take a look to it?
One more thing, I have 300 results, and when I sort it (by date) it only sort the results by page not the complete 300 list.
Hi,
Very sorry for the late reply. Can you give us your datatable init code? Is your datatable use local or remote datasource?
Thanks
No worries, I am using remote datasource, the code is the following.
var datatable = $(’.m_datatable’).mDatatable({ data: { type: ‘remote’, source: { read: { url: site_url + ‘dtrequest/get_invoices’ } }, pageSize: 10, serverPaging: true, serverFiltering: true, serverSorting: true },
layout: {
theme: 'default',
class: '',
scroll: false,
footer: false
},
});
sortable: true,
filterable: false,
pagination: true,
columns: [
{
field: "id",
title: "#",
width: 35,
sortable: true,
selector: false,
textAlign: 'center'
},
{
field: "invoice_number",
title: "# Factura",
width: 120
},
{
field: "invoice_document_reference",
title: "Tipo Fact.",
width: 70
},
{
field: "invoice_date",
title: "Fecha",
width: 75,
format: 'DD/MM/YYYY'
},
{
field: "customer_name",
title: "Cliente",
width: 200
},
{
field: "invoicing_status_name",
title: "Estado",
width: 70
},
{
field: "venta_total",
title: "Total",
width: 75
},
{
field: "Acciones",
width: 70,
title: "Acciones",
sortable: false,
overflow: 'visible',
template: function (row) {
var options = '';
var ref = row.invoice_number.toLowerCase() + ' - ' + row.id_module_invoice;
switch (row.invoicing_status_id){
case "1":
options += '' +
' Vista previa' +
' Editar' +
' Imprimir';
if(row.deletable){
options += ' Eliminar';
}else{
options += ' Anular';
}
],
break;
case "2":
options += '' +
' Vista previa' +
' Re imprimir' +
' Anular' +
' Revertir';
break;
case "3":
options += '' +
' Vista previa' +
' Revertir';
break;
case "4":
options += '' +
' Editar' +
' Anular';
break;
}
return '' +
' ' +
'hover-accent m-btn-icon m-btn-icon-only m-btn-pill" data-toggle="dropdown">' +
'' +
'' +
' ' + options + ' ' +
' ';
}
}
translate: {
records: {
processing: 'Cargando...',
noRecords: 'No se encontrarón registros'
},
toolbar: {
pagination: {
items: {
default: {
first: 'Primero',
prev: 'Anterior',
next: 'Siguiente',
last: 'Último',
more: 'Más páginas',
input: 'Número de página',
select: 'Seleccionar tamaño de página'
},
info: 'Viendo {{start}} - {{end}} de {{total}} registros'
}
}
}
}
Hi,
By enabling serverSorting:true, you need to do the sorting on your backend code and return sorter dataset.
The ‘format’ in column option use for local sorting. Also, you are enabling serverPaging:true, the pagination should be handled by the server. Only one page data at a time in the datatable. Please refer to the server side examples of handing pagination: “metronic_v5.0.6.1/docs/api_reference/datatables/demos/orders.php”. Also you should check your browser console to see what AJAX parameters being sent to your server side so you can get those parameters and use for pagination and sotring.
Thanks
Hi,
Need to define a shadow on two borders of the CENTER AREA (as seen below). The idea is that the “navigation bar” and the “menu: would look “raised”. While the center area looks “sunken”
The only part (on the menu) where the shadow would not be defined is when a button has been selected.
How can I do this?
TIA
| |
V NAVIGATION V
---------------------------------- <-- want a shadow here
-----> |
|
|
MENU | CENTER AREA
|
|
|
-----> |
|
want a shadow here on the left-hand-side of the CENTER AREA which is also the right-hand-side of the MENU
Hi,
Could you please provide following details for us in order to be able to help you out:
1) Which Metronic version are you using ? 2) Which demo are you using ? 3) Are you able to run build tools in order to compile the sass code. If not please refer to the documentation and get started with it.
Thanks.
Hi and thanks for the response
1) and 2) I am using the Metronic version here (I downloaded it again last month): http://keenthemes.com/preview/metronic/theme/admin_2/3) I am unaware of this procedure. What is it? Do you have a video or documentation that says how to use this?
TIA
Hi,
I hope my last entry went in OK. I am using http://keenthemes.com/preview/metronic/theme/admin_2/I downloaded the most recent version about a month ago.
TIA
Hi,
I would suggest you to use the new Metronic v5.x if you can since the old one is not actively supported anymore. We strongly recommend you using the new version. You can check the new version here: http://keenthemes.com/metronic
But, if you like to stick with the old version you should refer to the documentation to get started with SAAS compilation. No video documentation is available. But the documentation will guide you.
Thanks.
Hi – so you are saying only the Angular version is supported at this time? IMHO, the old one looks better and has more examples of how to use the features are to work – especially when it comes to the dashboard. The newer one does not look complete at this time. Also, where are you saying that the version I am working with is no longer supported. Should that be the case, why is it still on your website? TIA
Hi – so you are saying only the Angular version is supported at this time? IMHO, the old one looks better and has more examples of how to use the features are to work – especially when it comes to the dashboard. The newer one does not look complete at this time. Also, where are you saying that the version I am working with is no longer supported. Should that be the case, why is it still on your website? TIA
Hi,
The new v5.0 has 2 versions: jquery and jquery + angular5. You can use the default jQuery version without Angular. The old version is for a reference for whom still uses it. But the new updates will be implemented only for the new v5.0 version. The new v5.0 version is getting more complete in every update. Also the new version has many unique features.
Thanks
Hi,
I am using this theme: http://keenthemes.com/preview/metronic/theme/admin_2/
Whenever I select an item from the menu on the left, the color of the icon on the button selected is blue/turquoise.
This same color seems to be used for the number of emails received (showing on the navigation bar at the top)
The same is also true for the floating circle that has a “hamburger-like” icon inside of it.
How do I change the colors of these items? Is there a place where one can define a color to use? I was thinking that the new color defined could take place of all the ones that are blue/turquoise-looking.
TIA
Hi,
Yes, that’s a brand color applied globally. You can change it in with $brand-main-color variable defined in “theme\sass\layouts\layout2\themes\blue.scss”. Then you will need to run the gulp task to compile the modified sass code. The sidebar menu toggle icon uses image and you can check it here “theme\sass\layouts\layout2\layout\_header.scss”. If you need you can edit the image to change its color. For more info please refer to the theme documentation.
Thanks.
Hi and thanks for the response,
Do you have a video on how to make such a change – or – how one would use Gulp? What about a link?
TIA
Hi,
I need to be able to put a title on the navigation bar that is white, about H1 size and centered. This navigation bar is on the top of the page. How do I do this?
TIA
Hi,
Could you please provide more info ? What Metronic version and which demo are you using ? What navigation bar are you referring to ? We will need more details in order to point you out.
Thanks.
Hi and thanks for the response,
I am using the Metronic version here (I downloaded it again last month): http://keenthemes.com/preview/metronic/theme/admin_2/For further clarification, it is the navigation bar at the top. It has the name of “Nick” on the far right-hand-side and to the left is the “METRONIC” png (in green). Again it is the navigation bar at the top.
It was thinking of something perhaps like a grid with sizes like: col-md-3 (to hold METRONIC + all info on the left hand side) col-md-6 (to hold the TITLE) col-md-3 (to hold the items on the right-hand-side – like “Nick”, etc.)
It would also be nice to be able to increase the height of the navigation bar by a number of pixels as well.
TIA
Hi,
I hope my last entry went in OK. I am using http://keenthemes.com/preview/metronic/theme/admin_2/I downloaded the most recent version about a month ago.
TIA
Hi admin, how can I modify the CSS of datatable, so that all the columns able to display within the div, without overflow?
Hi,
You can set overflow to visible in the column settings with “overflow: ‘visible’” as shown below:
{
field: 'Actions',
width: 110,
title: 'Actions',
sortable: false,
overflow: 'visible'
}
Thanks.
Where is these code located?
Hi,
Please refer to the documentation to get started with the Metronoc’s mDatatable plugin: keenthemes.com/metronic/documentation.html
You can refer to the demos initialization codes here: “theme/default/src/js/demo/default/custom/components/datatables/”
Thanks.
Hello, do you have example datatable with footer on Metronic 5?
Thanks,
Hello Again,
With Original Datatable plugin, we can add additional result data. How do I add additional result data with Custom Metronic Datatable?
Thanks.
Hi,
Can you please provide us more details for this feature ? Also provide us a reference to how the old datatable does this and we will point you out if its possible with our datatable or consider implementing it as a new feature in a future releases. Can you please send further details to our support at support@keenthemes.com
Thanks.
PS: The footer examples will be added in the next update.
Upgrade question: we are currently using version 4.1.0 and would like to upgrade to a newer version. What strategy do you recommend? the latest version looks a bridge too far? Or is there an easy way to generate the themes folder like in the version we are using now?
Hi,
There are a lot of breaking changes between the old v4.x and the new v5.x and you will need to reintegrate the new version from scratch since its totally new theme with new code base and the latest plugins.
Thanks.
Is there a newer version in 4 (update) that we can use? I want to use the sidebar fixed. Or is it not included?
Hi,
The update for the old version will be no longer provided. We would suggest you to migrate to the new v5 version.
Thanks.
Hi, I followed your installation guide but in order to install yarn on Ubuntu 16.04 I had to follow these instructions
Thanks for the feedback on this. We will revise it for the next update.
Does this theme have RESPONSIVE shopping cart support?
Hi
,
You can build one by using Metronic’s core components and elements. Metronic has all the features to it.
Thanks.
Hi keenthemes.
I was about to use Metronic HTML version, Amazing looking, UI, Code … but with technology emreging now, and it is obvious that using a front end framework is likely a must thing to do, so I decided to use Metronic Angular and drop a backend framework way, but ..
I found difficulties to decide to use Metronic Angular for my project : when I took a look into your Metronic Angular version, I wasn’t convinced that it was a pure angular version, .. since been looking around and based on a comments of other Metronic’s Angular users/customers, they share the same opinion as I do. and even though you answered to a comment that you said : “This is a hybrid/wrapped angular version of Metronic where all jquery plugins are integrated. But we will release fully native angular version in the future”.
My question : can you provide an ETA of that release fully native Angular ??
Please, I’m waiting for that to begin project. Can you make it possible in the very near future, I think this is a missing piece of Metronic. to be intouchable Admin Theme.
Thank you Keentheemes, you made an amazing job.
Hi,
Thanks for the feedback.
Currently this wrapper version is being used by many users successfully. Of course it’s good to have the native Angular version but it will require us to create a new theme from scratch(but will be available within the same item) since we technically can not replicate all the features from the default version in the native angular version. For those users who need all the features from the default version to be available in the angular version this wrapper version is exactly what they need.
Regarding the native version, at the moment we can not give any ETA and also we do not take any responsibility for our users projects deliveries. However we are already started designing the native angular version to make it really high level solution that can be used even for a large projects without any doubt.
Thanks.
Hi How I can use toastr in Angular 5 ?
Hi,
You can use it in jquery way in your Angular code. Just refer to the documentation and try the example codes: https://github.com/CodeSeven/toastrThanks.
Next problem. How can I localize the datepicker? I’ve tried the following:
var inputDatepicker = function () {
$('#input_datum').datepicker({
todayHighlight: true,
orientation: "bottom left",
templates: {
leftArrow: '<i class="la la-angle-left" />',
rightArrow: '<i class="la la-angle-right" />'
},
prevText: '<zurück', prevStatus: '',
prevJumpText: '<<', prevJumpStatus: '',
nextText: 'Vor>', nextStatus: '',
nextJumpText: '>>', nextJumpStatus: '',
currentText: 'heute', currentStatus: '',
todayText: 'heute', todayStatus: '',
clearText: '-', clearStatus: '',
closeText: 'schließen', closeStatus: '',
monthNames: ['Januar','Februar','März','April','Mai','Juni',
'Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
'Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
showMonthAfterYear: false,
showOn: 'both',
dateFormat:'d MM, y'
});
}
Unfortunately this is not working.
Thanks in advance.
Hi,
Please try the way explained the official documentation: http://bootstrap-datepicker.readthedocs.io/en/latest/i18n.htmlThanks.
Hello,
me again
Now I have some problems with dropzone.
My Div:
<div class="form-group m-form__group row">
<label class="col-form-label col-lg-3 col-sm-12">Bild:</label>
<div class="col-lg-4 col-md-9 col-sm-12">
<div class="m-dropzone dropzone" action="php/ajax/ajax.upload.php" id="m-dropzone">
<div class="m-dropzone__msg dz-message needsclick">
<h3 class="m-dropzone__msg-title">
Bild hier ablegen oder klicken.
</h3>
</div>
</div>
</div>
</div>
The DIV is enclosed of a <form>
My JS:
var Dropzone = function () {
//== Private functions
var upload = function () {
// single file upload
Dropzone.options.mDropzone = {
paramName: "file", // The name that will be used to transfer the file
maxFiles: 1,
maxFilesize: 15, // MB
addRemoveLinks: true,
acceptedFiles: "image/*",
accept: function(file, done) {
done();
}
};
}
return {
// public functions
init: function() {
upload();
}
};
}();
The error:
Uncaught TypeError: Cannot set property 'mDropzone' of undefined
Why doesn’t dropzone find the correct element?
Thanks in advance.
Hi,
I would suggest you to double check your code and compare with the working one: “src\js\demo\default\custom\components\forms\widgets\dropzone.js” and “default\pages\components\forms\widgets\dropzone.html”.
You must have some typo or imporperly initializing it. If you can fully refer to the demo code it should work as expected. Also you can refer to the plugin’s official doc: http://www.dropzonejs.com/
Thanks
Hi again,
yeh was my fault . Named the function var dropzone (*I’m an idiot ;)).
Some minor issues:
Please have a look: https://imgur.com/a/Huxyo
1. The error message for an invalid file type looks a little odd
2. The Remove link is missing ( addRemoveLinks: true is set).
Thanks again 
Hi,
Seems the error is returned from the server side. You will need to check the plugin’s documentation more deeper. This issue is not related the theme. Probably you will need to create a server side code that handles the server file upload processes properly. Please refer to the plugin documentation for any further info. Our support only covered the theme related issues and questions. Also you will need to renew your support subscription to continue getting the theme support.
Thanks.
Hello, Is there an completely entire video tutorial? Please reply me? Thanks!!
Hi
,
The video tutorial are in progress. We will publish theme soon. If you have a valid purchase code and active support subscription you can contact our support for any questions that are not covered in the documentation.
Thanks.
Hi,
Is there any ETA for demo 8? those tabs fit my needs perfectly!
Hi
,
We will do our best to release a few more new demos within January including Demo8. Stay tuned!
Thanks.
Does thi theme support Kaban board type swim lanes and status update.
Hi
,
Sorry, we are not sure how these elements would look like. If possible could you please email our support with some references ?
Thanks.
Please review trello.com. They have a nice board system.
Thanks for the link. We will check it for our further considerations.
Noted. We will check it 
Hello,
is it possible to drag calendar events to external event list? in the example
http://keenthemes.com/metronic/preview/?page=components/calendar/external-events&demo=default
Only shows dragging events from external source, I would like to do the reverse, is that possible?
Thank you
Hi
,
Sure, its possible. For this you should check the plugin’s official documentation here: https://fullcalendar.io/. This plugin is so popular and you can google to find ready to use code related to this feature. All the best!
Thanks.
I have purchased almost a year ago but never used it. But now when I download I get 4.7 version why am i not getting version 5
Hi,
Please note, current download package includes both 4.x and 5. So you can use the one you like. Please kindly check download package one more time.
Thank you.
Hi,
What would be the way to go with demo4 to remove the inline scrollbar?
Hi
,
Sorry for the late reply.
Sure, you can disable the fixed content option for desktop and mobile using the layout builder of the demo 5: http://keenthemes.com/metronic/preview/?page=builder&demo=demo4Thanks.