2227 comments found.
Hi,
My question is as i am using ecarts for some data processing and also trying to use datatables on the same particular page but for some reason it is not letting me do it, so like nothing show onto my page i.e the echarts disappears and the dynamic stuff for the datatables doesn’t work too.
Can you please help me that!
Thankyou!
Hi,
Can you please send me JS core you are using for both ECharts and Datatables to e.kopyov[at]gmail.com? Looks like you have a wrong config of one of the libraries, so need to check your code first.
Thanks
Hi, I’m using the datepicker (Pre-defined ranges & callback) for use in a search form. The developer is having trouble with using the selected date range/preset in the query to fetch the results via PHP… Can you please send/point to a live example of how to get the selected values in php?
Hai, I have been trying to change the appln in RTL format, in that i was able to change the appln to RTL but i dont get the icons properly Can u pls suggest the soln. added snap thru mail pls verify.
Hi
Replied back
Hi I am a newbie . I need to change the font of dashboard. I tried changing the variable.core.less file but its not updated .Lato font. how can i do this can u tell me the steps
Hi
When you’ve changed the code in variables-core.less, did you re-compile your less files? Apart from that, you also need to embed Lato font into your page, something like:
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
Here is a link to Google fonts page.
Thanks
Hi, I mailed you the details already, did you check the issue ? any help ?
Regards
Hi
Hmm, i can’t find any emails from you, must be some filtering. Could you please remind me of your issue and send the code again to e.kopyov[at]gmail.com?
Thanks
Hello Eugene!
My license is: 192d37a8-90c6-4f96-b72c-c36b3599a8a8
I have a problem with dashboard.js file.
When I try to load your Task Manager page I do not have all functionality like sorting and filtering. I inspect this page and see some error:
Uncaught TypeError: Cannot read property ‘getBoundingClientRect’ of null at trafficSources (dashboard.js:74) at HTMLDocument.<anonymous> (dashboard.js:62) at j (jquery.min.js:2) at Object.fireWith [as resolveWith] (jquery.min.js:2) at Function.ready (jquery.min.js:2) at HTMLDocument.I (jquery.min.js:2)
When I remove dashboard.js everything is ok.
But I cannot remove this js file because this action failed the crrect view of this Task Manager panel.
Can you help me?
Thanks a lot
Hello there
dashboard.js is a tricky one, it contains configurations of all charts and some plugins, so it’s mostly for demo purposes only.
So you either need to remove the code you are not using from dashboard.js or create a new custom.js file and copy/paste code bits from dashboard.js that you are using to that file.
Or you can email me your code to e.kopyov[at]gmail.com, i’ll check it out and make it working for you.
Thanks
Hello. Do you plan to add a webpage or landing page using limitless? will be great.
Hi
Unfortunately no, i don’t have any plans for front end templates since Envato doesn’t allow authors to include templates from multiple categories in 1 package.
Thanks
I did not know that. Thank you for let me know. Some admin templates includes that, that why I asked. Hope to see a new version coming in the near feature.
As far as i know, only basic email templates are allowed. About 1.5 year ago Envato contacted most of the authors who had a bundled template and asked to remove extra stuff.
Thanks
We are using your template with great pleasure, but we had a question. We are looking for a ‘support’ widget that is visible on the side / bottom and that appears when clicked. Is this something that you’ve already build or are going to build?
Hey
Unfortunately this kind of floating panels isn’t supported at the moment. I had some ideas about that, but haven’t had a chance to implement it yet. Writing down for version 2.0
Thanks!
Is this using the latest version of bootstrap? Can I make apps with this?
Hi
Yes, it’s using latest stable version of Bootstrap. And yes, you can make apps with this, but you need additional development as this is a static HTML template.
Thanks
Hi,
is there any chance to add a taskboard in upcoming updates?
thanks
Hi
Unfortunately no, not in the next update. I am currently working on version 1.6, then 2.0 which will have a lot of new stuff and improvements, so will consider it for this version.
Thanks
Thanks 
thanks
Hi
I am sorry, but i don’t clearly understand the problem. Can you please share a link to your app or send me more details (markup, JS code etc) to e.kopyov[at]gmail.com?
Thanks
i have sent an email to your account.
Replied back
I am having trouble in changing date format. My support has expired but I hope you will be kind and answer me quickly. I am trying to format my date using following format dd/mm/yyyy but with no luck. I am using class “form-control datepicker-menus”. <input type=”text” class=”form-control datepicker-menus” id=”date”>
Can you let me in what js script this class is defined and how I can change format?
Hi,
Great Theme! Could you give me some hints on how I could modify the theme to include a fixed panel at the bottom of the page (see: http://imgur.com/a/wqt2P).
This would be like a 3rd “sidebar” but at the bottom maybe 25% of screen height. It would be different then a footer since it would reside inside the content-wrapper element.
Thanks, Steve
Hi Steve
That would be pretty easy to implement if you need it as a sticky component – just stick the panel to the bottom with position: fixed; and add bottom padding to body equal to panel height with basic JS calculations.
Thanks
Can the author/team maybe advise how we can ensure that heading-elements in the Panels are not replaced with a triple dot Icon in a Mobile view?
I’d like to ensure that the panel element stays both on Desktop and on mobile? The button tends to be replaced with a Triple Dot which when clicked on you see the button on mobile.
Hope this explains? Not sure where to look for this in components.css
Hello
You need to add an additional class name .not-collapsible to .heading-elements container:
<div class="heading-elements not-collapsible">
....
</div>
There is a combination of CSS and JS responsible for this functionality, if you add that class name, all styles will be ignored and you’ll see all elements on mobile screens by default.
Thanks
Hi,
Im getting a error when I use switchery toggles.. “Uncaught TypeError: Cannot read property ‘disabled’ of null at Switchery.isDisabled (switchery.min.js:1) at new Switchery (switchery.min.js:1) at HTMLDocument.<anonymous> (form_checkboxes_radios.js:34) at j (jquery.min.js:2) at Object.fireWith [as resolveWith] (jquery.min.js:2) at Function.ready (jquery.min.js:2) at HTMLDocument.I (jquery.min.js:2)”
Im using Select2, calendar and switches all in one single page.
Can you please help me on this issue, can you send demo page with all these elements, so that It is not confusing how to use these components.
Thanks
Hi
Please do not use any files from js/pages/ in development, they are for demo purposes only and contain multiple examples of various plugins and components. In your case form_checkboxes_radios.js file contains 4-5 different examples of Switchery, Uniform and Bootstrap Switch components. All you need from that doc is 1 specific example with default initialization:
var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
elems.forEach(function(html) {
var switchery = new Switchery(html);
});
Same logic is for select2 and calendar, just copy/paste Switchery code to the file where you store all your JS and you are done.
Please refer to documentation, file structure is well explained in there 
Thanks
Добрый день!
Есть ли в ближайших планах выпустить релиз на angular 2?
Добрый день
Планы есть, но когда это будет не скажу, пока занят только HTML версией.
Спасибо
Hi, how do I make sidebar-xs on the right side in place of sidebar-opposite? Meaning that I want a right side bar as a thin menu side bar?
Hi
This layout is not supported at the moment, it requires quite a lot of changes in sidebar styling. I am planning to add this feature in one of upcoming updates.
Thanks
Hello I am getting following error when I use the checkboxes:
Uncaught TypeError: Cannot read property ‘disabled’ of null at Switchery.isDisabled (switchery.min.js:1) at new Switchery (switchery.min.js:1) at HTMLDocument.<anonymous> (form_checkboxes_radios.js:34) at j (jquery.min.js:2) at Object.fireWith [as resolveWith] (jquery.min.js:2) at Function.ready (jquery.min.js:2) at HTMLDocument.I (jquery.min.js:2)
Pls help!
its fine now
Hello
Just use this code to initialize multiple switches:
var elems = Array.prototype.slice.call(document.querySelectorAll('.js-switch'));
elems.forEach(function(html) {
var switchery = new Switchery(html);
});
Thanks
Hi! FooTable v3.1.4 released with more advanced features. Will this plugin upgrade in next version? Thanks
Hi
Yes, but i need to resolve license issues first as last versions of Footable are not free. When everything will be sorted out, i’ll push an update with the latest version.
Thanks
Hmm, i got it! I hope you solve the license problem as soon as possible. Thanks Kopyov!
Hi,
First, congratulations for Limitless. It’s a fantastic tool ! However, I have a problem I can’t solve…
I’d like to print my pages in colors. I’m working with Firefox, and my previews before printing are in B/W. And so, it’s in B/W too if I print.
My printer settings are ok, and the Firefox settings are ok too. I checked them many times. My problme is only with the Limitless Webkit. The colors are printing with any application but Limitless.
Many thanks for helping me.
Mr Acloque
Hi
You can try to add media=”all” to all CSS files on your page:
<link type="text/css" rel="stylesheet" media="all" href="...">
This should do the trick. Let me know please if that doesn’t work for you.
Thanks
Hi,
Thank you for your answer. That’s what I tried first, but unfortunately, it doesn’t work. The preview and the printing are in B/W.
I’m still searching for a solution.
Mr Acloque
Hi
That’s weird, i just tried these 2 attributes locally and pages are printed in color:
media="print" // and media="all"
Please double check your printer settings.
Thanks
Hi,
So maybe you’re right. I’m going to check my scripts and my settings again and again. If you’re able to print in colors, I should be able too.
Thanks and keep going on improve this fantastic webkit 
Mr Acloque
Let me know please if you sorted it out. If not, i’ll dig deeper.
Thanks!