2227 comments found.
Hi Kopyov,
I have a short question about sidebar. Basically I’d like to know how to have a min fixed height to be the height of the screen. Currently there is no min height so if no text inside, the sidebar doesn’t exist whereas I’d like it to take the height of the screen and to be empty.
(I’m sorry; this may seem elementary, but I’m not familiar with Less) Thank you
Hi there,
Could you please tell me which layout are you using?
By default, in 1st and 2nd layouts all sidebars except detached fills 100% of page height regardless inner content. For detached sidebar and sidebars in 3rd, 4th and 5th layouts – pretty difficult to make them 100% height, but may i ask you why do you need it to be full height? From UX point of view, would be better to hide it at all if there’s no content 
Thanks
Hi Kopyov, Thanks for your answer.
It’s indeed layout 3 with sticky left sidebar. I’m using it as a booking summary with a wizzard form. So basically at each step of the wizzard form I’m adding a
I can send you screenshots by email if you prefer.
In case where using a sticky left sidebar is not the best option would you be able to suggest another solution ?
Thanks again, Regards
Hi,
Yes please, do send and i’ll take a quick look, perhaps i’ll be able to suggest you a better way
My email is e.kopyov[at]gmail.com
Thanks
nvm deleted some js and working thanks
Hi
Is is possible to have mini menu only close on clicking away rather than moving the mouse out of the menu?
For example, in http://demo.interface.club/limitless/layout_1/LTR/default/boxed_mini.html if you hover over Icon 2 for page layouts then the popoup menu appears – if for any reason you then move the mouse out of the menu it disappears and you have to click again.
In my case, I have one menu item like that which has 3 sub items and then each sub item has 20+ items which means it often goes off the bottom of the page and 9/10 times scrolling ends up closing the menu and you have to start again so I would like that the menu opens on hover (or on click actually, either is fine) but then only closes on clicking anywhere outside the open menu itself
Thanks
Hi
Unfortunately this option isn’t available at the moment. This menu is based on CSS only – by default it’s hidden and when you hover on parent list item, children dropdown menu becomes visible, very simple solution which works in all browsers and doesn’t require custom code.
In your case you need to switch from CSS to JS solution and either add some delay triggered on mouseleave or add custom JS code to toggle 2nd menu level on click.
First solution is pretty basic as well and easy to implement, but for click functionality – it is possible, but requires some JS tweaks in app.js file. Will look into this option when i’ll be working on mmenu integration.
Thanks
Hi, I want to use scrollX: true in datatables. I use layout2 default (databales_basic.js). The problem is when using it, when sidebar collapse, the header width not same with content width. can you help how to fix it ?
// Setting datatable defaults
$.extend( $.fn.dataTable.defaults, {
autoWidth: false,
scrollX: true,
columnDefs: [{
orderable: false,
width: '100px',
targets: [ 5 ]
}],
Hi.
Datatables adds a new cloned table for table header, which adjusts column widths dynamically based. You can use 2 options: fire a simple resize event when sidebar toggle button is clicked or use columns.adjust() from Datatables API:
// Scrollable datatable
var table = $('.your-table').DataTable({
...
});
// Resize event
$('.sidebar-control').on('click', function() {
$('.your-table').resize();
});
// Datatables API
$('.sidebar-control').on('click', function() {
table.columns.adjust().draw();
});
Thanks
Hello, I’m experiencing the following problem. I’m trying to use ajax upload. While i’m trying to add fotos with greek characters in their filename it erases all greek characters. Can this be solved or is there any option to solve this issue?
Hello
Could you please tell me which uploader are you using – bootstrap file upload, dropzone or plupload? Just checked AJAX Upload example of BS File Uploader – all good, i don’t see any issues with greek characters.
Thanks
I have the version of all files before 4-5 months i purchased this theme. Perhaps there are some updates i haven’t. I tried to your demo and works fine. I have to download new updated version of your theme and check again. Sorry for any inconvenience.
Yes, i’d suggest you to always keep your version of Limitless up-to-date, because in each update i check and upgrade plugins to the latest stable versions.
Thanks
Having more challenges with AJAX!
I am loading multiple collapsed panels via AJAX but all the panels are always open and the toggles do not work (they all work fine on a non AJAX page) – how can I make panel-collapsed close the dynamically loaded panel and then toggle as needed?
There could be anywhere from 1 to 10 panels on the AJAX loaded page – at the moment they all load as open and I cannot shut / toggle them.
There are no errors in the console but I cannot see any JS code which loads collapse/toggle to load inside the AJAX file (I had to do this with datepicker and tooltip for example)
Is this possible?
Thanks Jason
I have something like this:
<div id="display" />
$(document).ready(function() {
$('#choose').change(function() {
if($(this).val() != '') {
$.ajax({
type: 'get',
url: '/display.php',
data: { 'value' : $(this).val() } ,
success: function(data) {
$("#display").html(data);
}
});
}
}).change();
});
display.php
<div class="panel panel-flat panel-collapsed">
<div class="panel-heading">
<h6 class="panel-title">Name</h6>
<div class="heading-elements">
<ul class="icons-list">
<li><a data-action="collapse" class=""></a></li>
</ul>
</div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-lg-12">
........ etc
</div></div></div></div>
Hi Jason
I think you need to call .collapse() in the ajax’s success function:
$(document).ready(function() {
$('#choose').change(function() {
if($(this).val() != '') {
$.ajax({
type: 'get',
url: '/display.php',
data: { 'value' : $(this).val() } ,
success: function(data) {
$("#display").html(data);
$('.collapse').collapse();
// or $('.collapse').collapse('toggle');
}
});
}
}).change();
});
Should work now.
Thanks
Doesn’t seem to work unfortunately – I tried both variations to no avail. Is the JS for collapse included in Bootstrap/jQuery etc or does it also need to be loaded seperately?
Jason
Ouch, sorry – i’ve provided a fix for accordion, which uses Bootstrap’s Collapsible plugin.
For simple collapsible panel, you need to add this bit of code from app.js file:
// Collapse on click
$('.panel [data-action=collapse]').click(function (e) {
e.preventDefault();
var $panelCollapse = $(this).parent().parent().parent().parent().nextAll();
$(this).parents('.panel').toggleClass('panel-collapsed');
$(this).toggleClass('rotate-180');
$panelCollapse.slideToggle(150);
});
For multiple panels i’d suggest to use Collapse plugin for panel group, if your panels can be grouped.
Thanks
Progress! I can now open and close the panels which is great but they are all open by default despite having class of panel-collapsed – I tried setting the panel body to class hidden but the toggle is no longer able to open it
Figured it out – in case anyone else has the same issue I also needed to add the below into the AJAX loaded file and it is all now working
$('.panel-collapsed').children('.panel-heading').nextAll().hide();
Yeah, right – you can also add this line to rotate arrow when panel is collapsed by default:
$('.panel-collapsed').find('[data-action=collapse]').addClass('rotate-180');
Thanks
hey ! Back from south of france and ready to code, wanted to know if next update will be ready soon. And wanted to thank you for all the support you give (i have just read all of your answers !)
Hey!
Hopefully yes
I was actually thinking about splitting this update into 2 parts: 1st with plugins/libraries updates, fixed bugs and improvements and 2nd with custom pages only. The reason is due to huge amount of new pages/code/designs, this blocks me from publishing an update and takes a lot of time to manage everything properly. So i was thinking to upload a new 1.4 update and within 2 weeks another one, which will include new pages only. What do you think?
Thanks
Hey !
Very good idea. Are you sure with the time you need with second one? Two weeks would be so nice !
Thanks
Yeah, pretty much sure, should be enough for me to wrap things up and upload.
Thanks
is there any elearning stuff in the new update?
yeah, a few general pages – instructors, categories, courses, course detailed 
Awesome ! Thanks
Hi, I am using steps wizard. The next and previous buttons jump up and down between different steps and it looks really bad if I have a step with much fewer items than another. Your demo in wizard_steps.html is also doing the same. The demo here https://github.com/rstaib/jquery-steps/ does not have jumping buttons. How can we fix this? Thanks.
Hi,
I have removed that option, because if one of the steps has 800px height and another one has only 100px, you’ll get a huge empty area of 700px with buttons that are far off at the bottom. If you want to set a fixed height, you can easily do it with CSS:
.wizard > .content {
min-height: 250px;
}
Change 250px to any value which you think is best for your wizard content area.
Let me know please if that worked out.
Thanks
it does work. Thanks for your prompt response.
You are always welcome. Let me know please if you have any other questions.
i brought Limitless – Responsive Web Application Kit , but the file is too big to download, always interrupt , now it come up download limits error, ,can you send a email attach the file to me , 104493963@qq.com thanks very much ~
Hi,
Unfortunately i can’t send you an archive via email, because file size is too big for email.
Please try to unpack the package with 7Zip or Winzip software. Sometimes it happens with built-in tools, but with third party software always solves the issue.
Sorry for inconvenience.
Thanks
Hi great theme how do i change the nav bar and side bar color to #2E2E2E
Thanks
Hey
There are 3 ways how you can change main colors:
1. Simply add one of the color helper classes from color system (for example bg-slate) to:
<div class="sidebar sidebar-main">
...
</div>
and
<div class="navbar navbar-inverse">
...
</div>
But available colors don’t have #2e2e2e; value. However you can easily add a new variable or change one of the existing one.
2. Replace 2 variables in LESS files and recompile 4 main files – go to assets/less/core/variables/ folder and open both variables-custom.less and variables-core.less files.
In variables-core.less find variable @navbar-inverse-bg and change its value to #2e2e2e;
In variables-custom.less find variable @sidebar-dark-bg and change its value to #2e2e2e;
After that re-compile your less files and you are done.
3. Manually override background colors directly in CSS:
.navbar-inverse {
background-color: #2e2e2e;
border-color: #2e2e2e;
}
.sidebar {
background-color: #2e2e2e;
}
Let me know please if that worked out.
Thanks
Thanks, prob go with method 3 which file do I need to add the code into ?
Hi,
I’d suggest you to create 1 new css file, let’s say custom.css, and include it after all core css files. This option allows you to keep your code a bit more structured (your overrides are in separate file) and you won’t have any problems with template updates.
Thanks
Hi,
Do you have any guidance on how to use Passy to prevent form submission until a “valid” (i.e. strong) password is entered?
I looked at Passy docs and it shows:
if($( ‘input’ ).passy( ‘valid’ )) { ... }
but I cannot get this to work even if I change the input to an element on my form
Thanks Jason
Hey Jason
Just tried to setup an example and finally got it working. Here is a sample – i’ve used “Checker inside label” markup and added a form to it with ”.form-to-submit” class and submit button:
<form action="#" class="form-to-submit">
<div class="form-group">
<div class="label-indicator">
<input type="text" class="form-control">
<span class="label label-block password-indicator-label" />
</div>
</div>
<button type="button" class="btn btn-info generate-label">Generate 12 characters password</button>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
And here is a JS bit:
$('.form-to-submit').on('submit', function() {
if($('.label-indicator input').passy('valid')) {
alert('valid')
}
else {
alert('not valid')
}
});
Basically what it does is when you click Submit button and form submits, passy checks if input field has a valid value or not.
Hope this helps.
Thanks
Awesome, I can’t thank you enough for this and a great theme!
Hi, Bought a few of your templates. All have been fantastic. I’ve noticed on this one the ‘Processing’ indicator with datatables doesn’t show its processing the request prior to loading the data.
Doesn’t show on yours and its not showing on mine (using server side for me).
How can this be done?
Hi,
I think you need to add processing option to your table configuration. And here is a processing event if you want to show custom indicator.
Thanks!
Hello. I just purchased the theme, and unfortunately I found no starter kit inside the folder uncompressed from the downloaded zip file. Where are the starter kits ? Thank you.
Hey
Thanks for purchase!
You can find Starter kits inside /starters/ folder located in layout_*/LTR/default/ folder. Each layout and theme has its own starter kit.
Please let me know if you have any questions.
Thanks
Thank you. I’m really sorry I did not see it by myself. Maybe the doc can be updated to show the new file organisation, but it is minor that there are probably much more important things to do. Thanks again
No worries! Just checked documentation – you are right, there’s a wrong screenshot, didn’t update it last time. Will fix in upcoming update.
Thanks!
Hi My Name is Gleyson. How integrate the js components (select, datatables e etc) with angular js routers ?
ng-view ou data-view ?
Hi Gleyson
Very sorry for late reply.
Unfortunately i’m not an expert in Angular so i can’t help you much i’m afraid.
As far as i know, you can use native Angular versions of Select2 and Datatables.
Stand alone Angular version of Limitless will be added in one of the next updates.
Thanks!
Hello
Is it possible to have bootstrap tooltip inside Steps form? I cannot seem to get the tooltip to show but works fine outside Steps
Thanks
Hello
Of course, but you need to initialize tooltip when Steps is initialized. Simply re-init tooltip inside onInit event:
$(".selector").steps({
...
onInit: function() {
$('[data-popup="tooltip"]').tooltip({
container: 'body'
});
}
});
and use same markup as for default tooltips.
Thanks
Hello. On your theme have Full Calendar page, however, it doesn’t responsive. Can you fix it?
Hello,
There is a small bug with responsiveness in current version – on small screens table overflows the content.
To fix this issue, add this bit of CSS:
@media (max-width: 768px) {
.fc-view-container {
overflow: auto;
}
}
This fix will be added in upcoming update as well.
Thanks
Hi. When do you plan to have next release and what will be included.
Hi,
Working on it, still have some things to do. Should be available shortly.
A lot of new pages – blogs, contacts, cards, sitemap, mail, about, ecommerce, services, job search etc. And almost all plugins and libraries will be updated to the latest stable versions.
Thanks
Sounds great!!! thank you!
Hey,
In Documentation – Plugins – Extensions – BlockUI. Basically you just need to change icon class name in message option.
Demo code you can find in assets/js/pages/components_loaders.js file. Direct example:
// Light
$('#spinner-light').on('click', function() {
var light = $(this).parent();
$(light).block({
message: '<i class="icon-spinner spinner" />',
overlayCSS: {
backgroundColor: '#fff',
opacity: 0.8,
cursor: 'wait'
},
css: {
border: 0,
padding: 0,
backgroundColor: 'none'
}
});
window.setTimeout(function () {
$(light).unblock();
}, 2000);
});
Thanks
Hello
I am really impressed with your limitless web application kit and would like to make use of this. I currently have a CRM system I intend to update, but as I am not a programmer, I would need a professional to make this upgrade for me.
Reply if this is something you can do.
Cheers
Hello,
Thanks for kind words!
I can do it, but unfortunately i’m overloaded at the moment and will be available in October only
Very sorry about that.
Thanks!
Thank you for the reply, i only wish you where available to work with me on this. Is there any way i can contact you directly via emails or phone call, my company would really love to work with you on this important project..
Of course, you can contact me directly via email – e.kopyov(at)gmail.com
Thanks!
Hello, I sent a message over to you via email, did you receive it?
Hello,
Yes, just replied back. Thanks
Good morning, i trust you are okay.. Can you check your email please, i send you a mail with two emails, just to be sure you recieve this, as its very important..
Cheers
Looking forward to you reply
Hey,
Just replied back to your email. Please check.
Thanks
Pagination Control Question
Hi is there a way to add an input field so the user can enter the number of the page they want to navigate to?
e.g. a table has 1000 pages and navigating to page 700 would take a lot of clicks and not really viable, being able to enter the page number to navigate to would make this viable
e.g. paginate: { ‘first’: ‘First’, ‘last’: ‘Last’, ‘next’: ‘?’, ‘previous’: ‘?’, ‘page_number’: [input box] }
If this is not a current option is this something you plan to release?
Cheers, narc0sis
Hello,
Datatables has an option to add Navigation with text input using Input plugin, it does exactly what you need – adds an input field to pagination.
I didn’t add it yet, but i do want to include examples of all available Datatables plugins in the next update.
Thanks