2227 comments found.
Hello,
first of all – great theme! Hoever there’s one small thing – in helpers.less a rule says: .border-top-lg { border-top: 2px solid; }
however for a full-border it is: .border-lg { border-width: 2px; }
Is there any particular reason for that or is it just a bug and the rule should just be: .border-lg { border: 2px solid; }
Thanks!
Hello
It’s not a bug, .border-lg class usually is used in elements, that already have border, so basically it just increases border width.
But .border-top-lg class is for some specific elements only, where you can add top border and add color helper class.
Feel free to add or change helpers if you need it for some specific case.
Thanks
Hi there,
We have bought this Limitless Templete and integerated with JSF inorder to make values available in Backing bean (Java). But could not able trigger java actions at some places and values could not be passed directly to java file especially when using switchery class ,there is an bug with switchery checkbox which is adding repeatedly whenever the .editableform class is called in popup which we are using in table (editable table). Can you please provide some help on this ?
$('.switchery-editable').on('shown', function (e, editable) {
editable.input.$input.addClass('switcher-single');
});
var elem = document.querySelector('.switcher-single');
var init = new Switchery(elem);
Hello
Can you please share a full code? Need to check your initialization. If you have your project online, send me a link to the page, or simply email me the code to e.kopyov[at]gmail.com
Thanks
Thanks for reply,we have shared our code to your mail id,so pls check your email and get back to us as soon as possible
Thanks for reply,we have shared our code to your mail id,so pls check your email and get back to us as soon as possible
Hi
I have replied to your email 2 days ago, please check your mail.
Thanks
I purchased the iconmoon Basic Service in order for me to encode the fonts in my css file. I noticed that your iconmoon fonts are different from the one obtained from the website. Could you please provide me with your JSON file for the iconmoon fonts you are using?
Hello
Of course, could you please send an email to e.kopyov[at]gmail.com? I’ll send it over.
Thanks
Hi, great work with that dashboard. I really like it.
I’m having some issues at some browsers. Once hover my mouse over specific elements the buttons, text or forms are flickering and uses a lot of my CPU. Do you know maybe how to resolve that?
Many thanks, Will
Hello
If that happens in Safari browser, it’s a well known bug which renders CSS transitions incorrectly. The only thing which can cause CPU issues is charts and chart tooltips – dashboard uses native D3.js charts, which require custom JS configs and need some time to render SVG elements. In theory this should not affect CPU, but if you have a lot of SVG charts, this may cause some delay in rendering and a bit more resources. All other components are using 1-2 JS libraries and a set of CSS files, i doubt that they can cause such issues.
Thanks
I’m using select2 within my project.
http://i.imgur.com/OAwFohz.pngHow can i change the selected item’s color?
Hi
The proper way would be changing background-color property in select2.less file, line ~244:
.select2-selection__choice {
background-color: @color-slate-700; // change to whatever you want
}
And recompile files.
Thanks
hello when can we expect top menu navigation like clean UI template
hello
Not in the near future, 6th layout will have another option of vertical navigation. I’ve added this kind of nav to tabs layout, with some modifications you can get exactly what you want, because it’s a general nav layout.
Thanks
Gooday, can this be used in Wordpress?
Hello
No, it’s a static HTML template, not a Wordpress theme or Wordpress admin theme plugin.
Thanks
Hi Kopyov,
great work – could you please have a look at charts on mobile, the theme is not responsive 100% and i think that area should be improved but the theme is fantastic.
I was hoping if you can help me set a Child rows (show extra / detailed information) table i have tried but didn’t work and i will appreciate if you can show how to do it
many thanks
Hi
It’s pretty difficult to make charts 100% responsive – if you have a lot of points in line chart, this chart won’t be readable at all on mobile portrait mode.
Sure, what kind of problem do you have with Child rows example?
Thanks!
I was hoping if you can help me add a Child rows table into the template i tried to follow steps on this link https://datatables.net/examples/api/row_details.html but didn’t work. could you please help me add such a table to the templates tables page
thanks 
Of course, if you have tried already and didn’t make it – please send me your code to e.kopyov[at]gmail.com, i’ll make necessary fixes and send the file back to you.
Thanks
Hi,
Table > DataTable: Is it possible to combine have a “sticky” table header for the datatable? If not, can the content be scrollable in the datatable (limiting the height of the tbody rows)?
Thanks,
hi, very nice and rich feature template I will start my new project with this template keep the good works. thanks,
Thank you so much!
Hi Kopyov, using your theme we had found a bug with datatables row hover: if tr tag have a background class like .bg-danger that set color to white, when user have mouse hover the table row text is not visible. To avoid it we have modified _bootstrap/mixins/table-row.less file:
// Tables
.table-row-variant(@state; @background) {
// Exact selectors below required to override `.table-striped` and prevent
// inheritance to nested tables.
.table > thead > tr,
.table > tbody > tr,
.table > tfoot > tr {
> td.@{state},
> th.@{state},
&.@{state} > td,
&.@{state} > th {
background-color: @background;
}
}
// Hover states for `.table-hover`
// Note: this is not available for cells or rows within `thead` or `tfoot`.
.table-hover > tbody > tr {
> td.@{state}:hover,
> th.@{state}:hover,
&.@{state}:hover > td,
&:hover > .@{state},
&.@{state}:hover > th {
background-color: darken(@background, 5%);
color: inherit;
}
}
}
(we had add color: inherit;) and it seems work correctly.
Thank you for your great work!
Sorry for issue, but the correct file is _bootstrap/tables.less and whe have added color: inherit; in this portion of file (line 124):
.table-hover {
> tbody > tr:hover {
background-color: @table-bg-hover;
color: inherit;
}
}
Hello
Good catch! Thanks for reporting, will include your fix in upcoming update.
Thanks
hey
Can i change the whole dashboard view? Like it the template that flexible?
Hey
Sorry i don’t understand what you mean. Please provide more details.
Thanks
Can i fully customize the dashboard?
Of course, but for dashboard charts you need to know JS, because all charts are based on native D3.js code.
Thanks
Sorry, also page like ticket list and detail page. is it possible to have as well?
Unfortunately no, ticketing system as well as forums will be included in the next updates only.
Thanks
dear support, are there any plans to release page kit such as pricing, products related?
Hello
Yes, will be included in upcoming update.
Thanks
Hi,
I’m looking for a solution to a following issue:
We need the working area container to be always 100% height and not scroll depending on the client resolution etc however the content inside that working area to be scrollable.
Can you please advice if there’s already a solution provided ?
Thanks, Peter
Hey Peter
You can do some JS magic – calculate dynamically container height with jQuery and attach to window resize event. Something like:
// Calculate container height excluding content above container (navbar, page title etc.)
var containerHeight = $(window).height() - $('.your-container').offset().top;
// Set height
$('.your-container').css('height', containerHeight);
// Attach to window resize
$(window).on('resize', function() {
setTimeout(function() {
// Set height
$('.your-container').css('height', containerHeight);
}, 100);
}).resize();
This should do the trick.
Thanks
Thanks, it worked. If possible 1 more question:
What variable should i change in layout 3 material ltr css in order to make sidebar collapsed by default on ipad in horizontal layout, ie i want menu collapsed on all devices with width <= 1024px not 768px
Thanks
Hi
I think you need to edit @screen-sm variable in /less/core/variables/variables-core.less, this should work i believe, but needs a proper testing.
Thanks
Please add adaptive sliders and carousel!
And Pricing Tables too).
Hi
Will consider these additions in future updates. Thanks for suggestions!
on form_checkboxes_radios.html if you delete the section <!- Switchery toggles ->
none of the other switches work they all revert back to checkboxes
i need to use a single switch on other pages how can i do this?
I’ve tried loading the stylesheets and .js on other pages and can’t get it to work without including at least one section from <!- switchery toggles -> on the same page (obviously this is impractical when trying to build an admin
Hello
Correct, you need to use only 1 configuration of Switchery. Assuming you are using form_checkboxes_radios.js file. Please do not use any JS files from /assets/js/pages/ in development, they contain a lot of different examples of different plugins. If you check your browser console, you’ll notice JS errors related to other plugins, unless you are using uniform.js, swichery and bootstrap switch all together.
So you would need only 1 configuration example of switchery:
// Switchery
// ------------------------------
// Initialize multiple switches
if (Array.prototype.forEach) {
var elems = Array.prototype.slice.call(document.querySelectorAll('.your-selector'));
elems.forEach(function(html) {
var switchery = new Switchery(html);
});
}
else {
var elems = document.querySelectorAll('.your-selector');
for (var i = 0; i < elems.length; i++) {
var switchery = new Switchery(elems[i]);
}
}
Thanks
thanks for the reply, sorry i was being lazy. everything’s working fine now
No worries
Let me know if you have any other questions.
Thanks
Hello, and thanks for this great panel! In my project, I require to support both the RTL and LTR layouts, but your decision to have separate files makes this harder. Specially when I need to have a LTR input field in a RTL page. Is there any options to have both layouts in one stylesheet file, and specify whether each field should be LTR or RTL?
Hello
Unfortunately that’s not possible at the moment. I’ve split LTR and RTL into 2 different CSS set, because adding .rtl class dependency will make default LTR CSS set a lot heavier. So changing direction is possible just by swapping css files for now.
Sorry about that.
Thanks
Tooltips doesn’t work on disabled buttons. how can we disable a button and add a tooltip to it?
By default disabled button doesn’t have pointer events. You can either override default bootstrap code with:
.btn.disabled {
pointer-events: auto;
}
or wrap button in div and add tooltip to that div (preferred):
<div data-popup="tooltip" data-title="Title">
<button class="btn btn-default disabled" disabled>Button</button>
</div>
Thanks
thanks. I used div wrapper.
Not bought yet. Just want to ask you, If can I use item (extended licence) in larger stock item (application and advertising system for android) and sell it outside envanto. Looking for admin panel author who will allow me to do this.
Hi
Yes, with Extended license you are allowed to include Limitless in stock item, which you’ll be selling elsewhere.
Thanks