2227 comments found.
Hello, is it easy to integrate this theme with existing PHP and mySQL databases? Thank you!
Hello
Of course, this is a static HTML template, so you can easily use it as a base for your app.
Thanks!
hi, When datapicker (jquery ui) is on dialog (jquery ui) there is visual bug http://goo.gl/u4Gwqr
Because your style (z-index) is important http://goo.gl/LlqBLW
Hey
Nice catch! Thanks, will be tested on Tuesday and i’ll include a fix in upcoming update. Did you manage to get it working or you need an urgent fix?
Thanks!
No, I don’t need. thanks.
Hi,
I’m having a problem to ensure the sidebar menu when minified as per screenshot below.
Is there any JavaScript need to be trigger for this feature to function well?
I have copied your JavaScript content into Laravel assets folder and piped through Elixir for our development purpose.
Screenshot – Original: https://www.dropbox.com/s/qr2r3hiu5iv473r/limitless-original.png
Screenshot – Framework: https://www.dropbox.com/s/uobxijm77tbudht/limitless-app.png
Regards.
Hi,
Thanks for confirmation. Can you send me your HTML code of the page you are using to e.kopyov[at]gmail.com? I need to check your markup, looks like you’ve used some extra classes that hide overflow.
Or send me a link to your page if it’s online.
Thanks
Really looking forward to the next update. I am waiting on seeing the new pages and any new design elements before proceeding with my redesign. Hopefully you can release within the next week, that would be super helpful to me 
Hey,
I’m still working on it and not sure at the moment if it will be out next week. I’m getting closer, but due to personal reasons i just can’t work on it full time
I’d suggest you to proceed with your redesign anyway and then just add new elements – main structure, layouts and styling remain the same. You’ll need to add new JS and LESS files, and new HTML for elements and that’s all.
Thanks
Hi,
I’m having a problem to ensure the sidebar menu when minified as per screenshot below.
Is there any JavaScript need to be trigger for this feature to function well?
I have copied your JavaScript content into Laravel assets folder and piped through Elixir for our development purpose.
Screenshot: https://www.dropbox.com/s/xdp08m6xy19jsck/Screen%20Shot%202016-07-27%20at%206.56.59%20PM.png
Regards, Ariff
Hi.
I didn’t clearly understand your question. You mean how does sidebar width change work?
And could you please post a comment using account you’ve purchased the template from? Because now i don’t see that you own a license.
Thanks
Hello,
In mobile responsive version, I can not open the keyboard in the search field. This occurs in mobile Android (Chrome).
What solution?
Regards,
Diogo
Hey.
Unfortunately i don’t have any Android devices at the moment and test it. It does work on iOS though.
By default this input field has search type, try to replace it with <input type="text" placeholder="Search">, perhaps this is the problem.
Let me know please if that worked out for you.
Thanks
I appreciate the feedback.
Still does not work.
You could try to get an android, the problem that it opens the keyboard more then closes quickly, it is very strange that.
Looking forward to your help.
Thank you.
IOS works perfectly. But my greatest need is for Android.
The problem occurs in sitck sidebar in the search field
Aha, although i couldn’t reproduce this issue on Android today, i figured out that this is a well known bug in Android browsers that fires resize event on scroll. You can try one of the following solutions:
1. To check if the device width was actually changed after focus – example
2. Add height=device-height to the viewport (reference):
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
3. Force input focus using .focus() event when toggler is clicked, something like:
$('.sidebar-mobile-detached-toggle').on('click', function() {
$('.sidebar-search').focus();
});
and add sidebar-focus class to the input field.
I’ll keep investigating this issue and trying on different Android devices. If i’ll be able to reproduce this issue, i’ll include a fix in the upcoming update.
Thanks
Thanks for the feedback
I tried all suggestions
But the problem still persists.
Hey,
That is very strange, i tried yesterday on another device and couldn’t reproduce this issue.
I’ll keep investigating and next week i’ll be able to test it on multiple devices to make sure that this issue isn’t local and get back to afterwards.
Thanks
Okay Thanks
Hi, can you help me how to add buttons, because they are not appear on header… I replace the ajax url. I want to display button like in this demo http://demo.interface.club/limitless/layout_4/LTR/default/datatable_extension_buttons_init.html and add some scripts.
If I add or remove the line `$.extend( $.fn.dataTable.defaults`, still not appear. Datatables works well, just no buttons show.
Thanks for your attention.
var table = $('.datatable-basic').DataTable({
processing: true,
serverSide: true,
autoWidth: false,
scrollX: true,
fixedColumns: {
rightColumns: 1
},
buttons: {
dom: {
button: {
className: 'btn btn-default'
}
},
buttons: [
{extend: 'copy'},
{extend: 'csv'},
{extend: 'excel'},
{extend: 'pdf'},
{extend: 'print'}
]
},
order: [0, 'desc'],
ajax: 'url',
columns: [
{ data: 'id', name: 'id', width: "15px", class: "text-center", visible: false },
{ data: 'name', name: 'name' },
{ data: 'description', name: 'description', defaultContent: '' },
{ data: 'status', name: 'status', class: "text-center" },
{ data: 'creator.fullname', name: 'creator.first_name' },
{ data: 'created_at', name: 'created_at', class: "text-center" },
{ data: 'updater.fullname', name: 'updater.first_name', defaultContent: '' },
{ data: 'updated_at', name: 'updated_at', class: "text-center" },
{ data: 'deleted_at', name: 'deleted_at', class: "text-center", visible: false },
{ data: 'action', name: 'action', width: "30px", class: "text-center", orderable: false, searchable: false},
]
});
$.extend( $.fn.dataTable.defaults, {
dom: '<"datatable-header"fBl><"datatable-scroll-wrap"t><"datatable-footer"ip>',
language: {
search: ' Filter: INPUT',
lengthMenu: ' Show: MENU',
paginate: { 'first': 'First', 'last': 'Last', 'next': '?', 'previous': '?' }
}
});
Hi,
That bit of code with $.fn.dataTable.defaults is responsible for setting global defaults for all datatables. In your case, you need to use at least “dom” option with letter “B” included, because placement of this letter defines where buttons will be displayed.
Just try to add this line as well:
var table = $('.datatable-basic').DataTable({
processing: true,
serverSide: true,
dom: '<"datatable-header"fBl><"datatable-scroll-wrap"t><"datatable-footer"ip>',
...
In other specific samples, you can use initComplete callback to insert buttons when table initialization is complete.
Another possible reason – did you include JS files for buttons and fixedColumns extensions after datatables.min.js? And do you see any errors in console?
Thanks
Ok, thanks it’s working now. But I found that the button ‘excel’ doesn’t export the contents. While csv can have content of the tables. You can check also on the link and export the ‘excel’ will have nothing inside the file.
As far as i know, datatable with server side processing doesn’t support export of all table data. It is possible to configure it, but it is simply not recommended by datatables devs – server side processing is needed when you have thousands and millions of entries, that simply can’t be generated in 1 file or might take too much time. Here you can check 2 possible solutions. However in some cases, PDF export works fine. So looks like this issue appears in some specific cases and depends on datatable configuration.
I would also suggest to go through Datatables forum for more solutions.
Thanks
Oh yes, I knew it, it can’t export all records. Just take a look the demo, when csv button can have some data, but when clikced excel button, zero data inside the file when exported. I’m still looking for the problem.
I would suggest you to try a few things:
1. If your table doesn;t have hundreds of thousands and even millions of rows, you can easily disable server side processing.
2. Try to use Flash buttons, i’ve found some information about this issue and looks like in some cases using Flash buttons solves the issue.
3. You can try to initialize buttons as in this example or in initComplete callback (haven’t tested this solution).
Thanks
Ok thanks. I’ll try your suggestions. 
Hi, I see you theme, and have some questions, I am looking to update a 3 page web app I have and sell. Can I use your theme for this if I purchase it.
Do you have any updates or more page kits coming,
like Kanban board, horizontal time lines like https://codecanyon.net/item/zoomtimeline-css-timeline-pack/16918891?s_rank=2, https://codecanyon.net/item/flik-timeline-10-style-with-generator/15080536?s_rank=8 (horizontal options) to use multiple timelines in a page.
Projects with nested tasks page
Hi,
I was thinking about horizontal timelines, but i don’t know when exactly they will be out.
Upcoming update will include a lot of new page kits, but horizontal timelines will be added later.
Thanks
Echart has a problem, when I copy all echarts it work, but when I delete one of them none of them work.
Hey,
Yes, correct – if you don’t use all of the charts on 1 page from live preview, you need to remove both: HTML container and JS configuration of specific chart. To remove JS bit, just open one of those files you are using from /js/charts/echarts/ folder and remove initialization code, options, setOption and a line of code in resize function.
For example, each charts includes:
// Initialize charts
// ------------------------------
var funnel_desc = ec.init(document.getElementById('funnel_desc'), limitless);
// Charts setup
// ------------------------------
funnel_desc_options = { ... };
// Apply options
// ------------------------------
funnel_desc.setOption(funnel_desc_options);
// Resize charts
// ------------------------------
window.onresize = function () { ... }
Just remove these options for each charts and keep only those you are actually using.
Thanks
Im not using .less (yet) but is there a fast/safe way to change the primary color on the theme?
Thanks!
Hi,
Depending on a set of elements, you can add color helper classes directly in HTML or if you want to change overall look and feel, i’d suggest you to create 1 CSS file and override styles for specific components.
Let me know please if you need more detailed explanation.
Thanks
Hello. I’m interested in purchase LimitLess Template. Can I Use It with a PHP Project? How can I extract data to show charts? Is it a JSON File passed by parameter or is a physical file? How Can I create a Select ComboBox in a form? Manually using a loop or there is some kind of config file? There is somewhere to read deeply how to use it?
Thank you
Hello,
Yes sure, this is a static HTML template and you can use it as a base for your PHP based application.
It depends on your code base. Basically almost all charts support JSON format, D3.js charts support JSON, TSV and CSV file formats.
Combobox – you mean input field and select/dropdown menu? Easily! You can use Bootstrap’s input group component for that.
It includes an extensive documentation, but it doesn’t explain how to integrate HTML code to your platform.
Thanks
There appears to be a bug with Summernote and jQuery Validate – even if the field with Summernote is not being validated, if Validate is loaded on the page then every time you click into the textarea you get “Uncaught TypeError: Cannot read property ‘nodeType’ of undefined”
This stops many of the functions in Summernote from working including image upload, bold, italic and others
Thanks
Hello,
Yeah, there was an issue with those 2 plugins working together, which hasn’t been fixed yet. As far as i remember, the issue was related to validating hidden fields. You can try this solution – force validation to ignore empty fields, as one of possible solutions.
Let me know please if that worked out for you.
Thanks
What does the new update? I’m interested in ecommerce, it will be?
Hi,
Yes, ecommerce will be included in upcoming update. As mentioned before, update is going to be out soon, sorry but i don’t have any specific date at the moment.
Thanks
When using Bootstrap-select without input-group button, the width of the Bootstrap remain fixed and does not adjust itself to the selected text. However when used with input-group, the width of the bootstrap select readjusts depending on the selected text. How to prevent this?
Hey,
You can specify the width of select using data-width=”...” attribute. So, to make it full width, you can use the following markup:
<select class="bootstrap-select" data-width="100%">
<option value="AK">Alaska</option>
<option value="HI">Hawaii</option>
<option value="CA">California</option>
<option value="NV">Nevada</option>
<option value="OR">Oregon</option>
</select>
Thanks
Hi,
We have an issue with style.css with Safari. In order to load it Safari need 22 sec.
Are you already experienced this? thx
Andrea
Hey Andrea,
Hmm, never experienced such issue. Also there is no file named style.css, there is another one – styles.css with styles for icons. But its size is 47kb, i don’t think Safari wouldn’t handle this file size 
Do you see the same issue on Limitless live preview?
Thanks
no issue on the live preview… will check again. thx for the feedback.
Always welcome. Must be some local issue. Let me know please if that was fixed on your side.
Thanks
data-popup=”tooltip” data-placement=”left”
But the tooltip located at the bottom.
What can i do to fix this problem ?
Hi,
Quick question – are you using jQueryUI library on your page as well? Looks like there is a conflict between Bootstrap and jQueryUI tooltips, try to load bootstrap.min.js after jqueryui, not before.
Let me know please if that worked out.
Thanks
Hm…
i’ts work, but
bootstrap tooltip doesn’t work on td http://goo.gl/mg6qne
can i solve this problem, or not ?
You can try 2 options:
1. Add data-container=”body”, this option will append tooltip to the body tag
2. Instead of applying tooltip to the table cell, you can try to add it to inner tag, for example
<td>
<span data-popup="tooltip" data-placement="left">...</span>
</td>
Thanks
Thanks a lot
Always welcome 
Hi,
Just wanted to confirm that I’m ok from a licensing perspective (sorry, I’m sure you must get a lot of this). I currently have a regular license. I’m using this template to build an app for the company I work for. The app will be used internally by staff only. There will be multiple users of the app, but nobody is getting charged for anything, it’s basically a workflow tool. Is the regular license ok for this use?
Thanks for your time. By the way, this is the best admin template I’ve seen. Keep up the great work 
Hi,
I have just started using this Limitless template. I am working on responsive tables with option data-hide. I am wondering if there is a parameter to hide the column on larger devices but show only on mobile/tablet. Your inputs on this is highly appreciated.
Regards, Harsha M.
Hey Harsha,
Of course, you can control columns visibility using proper class names – here is a quick example with source code. Additionally, you can change breakpoints if you want.
Thanks
Hello,
So I’m needing to start on a project and not sure if I can wait for the newest update to come out as there is not a definitive date for one. If I get started with 1.3 will there be a significant amount of updates I’ll need to make to upgrade to the next version or would it be wise to wait?
Also, is there a place where you’ve defined a roadmap for your theme? I see you answering the same questions about an update but may be easier to have a place where people can see what’s coming with the next update, just a suggestion 
Cheers
Hello,
Yes, you can start with 1.3, i almost didn’t touch existing functionality, but updated all plugins to the latest versions. Some of them (bootstrap file input, image cropper, bootbox etc) require additional updates in less and js files, but minor. Main functionality remains the same. But it will have around 35 new pages. Also it doesn’t include any major fixes, only minor ones.
I’ve tried that once before and after the first update – people asked same questions about update despite roadmap
So i’ve removed it for now. I wish Envato has added a new “Announcements” or “Changelog” tab, where authors can post important things about themes, but..
Thanks
Great! Thanks for the detailed response. I now have some direction as to what my next steps should be. And I agree with you on the “Announcements” or “Changelog” tab. Actually was thinking the same thing – it would be nice for sure.
Cheers!
PS – Excited to see the 35 new pages!
Indeed, so users can see important alerts separately. Unfortunately i don’t think we can expect this feature in the next couple of years 
Thanks!
Hi There,
I found a small bug (at least i think it is one :-)).
When using vertical tabs (left) and you add a nested horizontal tab it also is showns as a vertical tab.
The CSS line:
.nav-tabs-vertical .nav-tabs
Should maybe be more specific, for instance:
.nav-tabs-vertical > .nav-tabs
Cheers!
Hey hey.
Ahaa, good catch! Thanks, will check this week and include a fix to the upcoming update 
Thanks!