2227 comments found.
Hey, thank you for your outstanding admin theme.
I have a little problem when I use passy (with the element ‘password-indicator-label-absolute’) and validate together. Because validate creates a label before the passy span, the passy notice moves (which is not wanted). Any hints here?
Thanks in advance 
Hey
You just need to re-position error label. Assuming you have this markup:
<div class="label-indicator-absolute">
<input type="text" class="form-control" required="required">
<span class="label password-indicator-label-absolute" />
</div>
In this case you need to add one more property to errorPlacement function in validation config. Find this code:
// Input group, styled file input
else if (element.parent().hasClass('uploader') || element.parents().hasClass('input-group')) {
error.appendTo( element.parent().parent() );
}
and replace with:
// Input group, styled file input
else if (element.parent().hasClass('uploader') || element.parents().hasClass('input-group') || element.parent().hasClass('label-indicator-absolute')) {
error.appendTo( element.parent().parent() );
}
This should do the trick.
Thanks
Hey, thanks for your answer. Where can I find the validation config? You mean the ‘errorPlacement’ function?
Originally validation config is in assets/js/pages/form_validation.js file. ‘errorPlacement’ function is a part of validation config, it contains various statements for error placement.
Hey, this did the trick. Thanks again
But same goes for using ‘span class=”help-block”’ with the input. Perhaps something for future updates 
Yep, feel free to play with placement, this is the most common bug in custom forms 
Thanks!
I have used 30+ columns in table and in that one column(method) is select box dropdown with icon, in my case it gets wrap i meant image in one line and value in next line ,so to make it as in one line
Hi
Try to set a fixed width to the column and/or add class="text-norap" to table td.
Thanks
hai tried but doesnt work! then i had one more issue in that that dropdown get hide within the table.i have used overflow:visible.but that make the whole table visible without the scroll which has 30+ columns so can you pls suggest us any soln so that overflow should work only for the columns not for the whole table..i have tried overflow:visible for that column but that doesnt work…
i have mailed u the snapshot pls verify…
replied back
Thanks that worked!
Hi,
I’m very interested in this theme for a large project which may invoice purchasing the $1200 license. We’re at the stage before we’ve spoke to any developers for the project.
Can you advise if the theme will work with any GUI based bootstrap editors? We’re trying to find a way to build the admin interfaces the way we need them, before handing over to a developer to connect them to the application. I notice on the variety of editors available they have a drag and drop interface to allow the pages to be laid out.
Could such tool use the elements included in this theme? If not, then what is the best way to handle the (design) phase where we’d wire frame, without the designer knowing what elements were available and so on.
Sorry if this is a basic question but we’re pre development stage.
Many thanks,
Jamie.
Hi Jamie
Assuming you meant Bootstrap drag&drop builder? Since Limitless uses native Bootstrap markup, it should be supported by all editors and/or builders.
But the template itself doesn’t have any editors built in, since it’s pretty much a custom feature.
Thanks for the interest!
Thanks for the reply. Yes I mean a drag and drop builder. We’d be looking for a way to create pages, and be able to drag and drop the plethora of elements included in your theme, onto the pages. I understand that there is no editor built in, and wondered which builder you’d recommend to achieve this.
Sorry, can’t suggest you any builders, because i haven’t worked with them. But as far as i understand you requirements, should be pretty easy to create it from scratch instead of using custom builders with tons of extra options. If you need a simple functionality, you can use drag&drop library, cookies and grid to create simple builder and then add necessary components. In this case your builder will be as clean as possible.
Thanks!
That’s great news. Next release in 12-14 days will be an early Christmas present. Would you be able to tell me the list of new features to be released? Thanks!
Hi
Sorry for delay. I will make an announcement later this week with full list of new features.
Thanks
Great, thanks!
I am writing to ask about the update. I am not trying to be difficult. I have stayed away for a while, but I am down to my last 7 days of support. I would really like to know if it is coming anytime soon. I know others have asked, but trying to get something a little more definitive if possible.
Hi Jeff
Will be uploaded within next 12-14 days, working hard on it.
Thanks
Thank you!
Hi Kopyov,
i was wondering if there is any datepicker with time option we would like to use it in booking a date and time i found only daterange on the template but our purpose is to select only one date and time (e.g 07/12/2016 10:00 am) any help please thanks
Hey
Actually you can use Daterange picker with a single calendar and time picker, here is an example:
// Single picker
$('.your-selector').daterangepicker({
singleDatePicker: true,
timePicker: true,
locale: {
format: 'MM/DD/YYYY h:mm a'
}
});
This should do the trick.
Thanks
I’m an administrator for a state wide florist association and want to provide an online membership application with the ability to add an escrow payment by the applicant that is held before their membership is approved.
The method we use now is just a plain pdf form that the applicant prints out, fills out and manually mails to us with their check. We want to digitize this for convenience for the applicants.
Does your kit provide anything that might help with this.
Hi
Unfortunately no, this is a static HTML template and doesn’t have any built-in tools for this kind of functionality. It’s ready for integration, but requires additional development.
Thanks
Hi, Thank you for this great theme! I started building a new page with it and I want to implment the basic area chart from echarts. I’ve included the 2 js files that are required and started getting the following error:
echarts.js:1 Uncaught TypeError: Cannot read property ‘getAttribute’ of null(…)
Please advise.
Hey
Can you please send a full JS code of your chart initialization to e.kopyov[at]gmail.com? I think i know what’s wrong, but want to make sure.
Thanks
Hi Kopyov,
Is Inbox Design still on-going ? If so, I am not gonna design another one. If you will plan to release it within this month, I’m gonna wait for your update.
Best regards
Hey
Yes, will be ready tomorrow. Please email me to e.kopyov[at]gmail.com, i’ll send it over when ready. Also please mention your layout version and theme.
Thanks
Hello Kopyov,
I’m very interested in the Extended Licence of Limitless – Responsive Web Aplication Kit (US 1,200), but for us here in Brazil is very expensive, compared to US consumers i believe is 2,5 times the proportional value. Don’t you have a discount cupom for a third world countries? Sorry for ask that, you did a great job with your product.
Thanks for your understanding,
Guilherme
Hey Guilherme
Please email me to e.kopyov[at]gmail.com, we’ll see what i can do for you.
Thanks
Hello,
I’m setting scrollX on the datatable as my content is too large. When I use the action menu in that case it disappears under the table rows and doesn’t properly show. I tried to mimic in your datatable_basic.js but there the menu shows correcly. Any idea what it coult be? My initialization is:
$.extend( $.fn.dataTable.defaults, {
autoWidth: false,
scrollX: true,
columnDefs: [{
orderable: false,
width: '100px',
targets: [ 12 ]
}],
dom: '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>',
language: {
search: ' Filter: INPUT',
lengthMenu: ' Show: MENU',
paginate: { 'first': 'First', 'last': 'Last', 'next': '→', 'previous': '←' }
},
drawCallback: function () {
$(this).find('tbody tr').slice(-3).find('.dropdown, .btn-group').addClass('dropup');
},
preDrawCallback: function() {
$(this).find('tbody tr').slice(-3).find('.dropdown, .btn-group').removeClass('dropup');
}
});
Hello
Your configuration looks correct, but you basically can’t do anything about it – scrolling adds hidden overflow to table container and visible area of dropdown menu is limited by table edges. You can fix it by appending dropdown menu to parent container instead of table row so that table overflow doesn’t affect dropdown.
Those 2 bits of JS in drawCallback and preDrawCallback are working fine, but only when you have some rows and simply should change menu position in the last 3 rows.
Thanks
Thanks, a quick and clear answer I can work with. I’ll remove the action menu and solve it another way.
Always welcome 
Hi Kopyov, What would be the easiest way to set the default look for form inputs (text fields)? I changed one by adding “alpha-grey text-gray” to the class for that input but how would I do this on a global level?
Hi
The easiest way is to edit forms.less and variables-core.less files, they contain all variables and form control styles. You need to edit .form-control class name in forms.less (assets/less/bootstrap_limitless/) and set of variables in variables-core.less (assets/less/core/variables/).
Let me know if you need any further help.
Thanks
I am interested in purchasing your template.
Can you please let me know how long the template is supported.
I would also like to know the type of support and if the main developer is still involved.
When will new updates become available. i.e new bootstrap updates.
Thank you.
Hi
Template is supported, updates take some time, because i am a main developer, main designer and main support specialist.
So, all support questions are answered, almost all reported bugs are fixed.
Thanks
Hi Eugene, how can I change the style of a bootstrap multiselect option? I want to highlight certain options with a yellow background. I have tried everything but no change. Here is my block without the style attempt.
<select class=”loc-chooser” multiple=”multiple”> <cfloop query=”getloc”> <option value=”#location#”> #location# </option> </cfloop> </select>
thanks!
The reason I ask to style the options is because if I add a <option data-role=”divider”></option> between my groups is severely slows down the time that it takes for the action to occur when I click a checkbox. Not sure why. So I thought I would add so style to highlight or indent the ones that I need to. Any idea why adding <option data-role=”divider”></option> slows performance so much?
Hi
Hmm, that’s weird, adding 1 additional option should not slow down the whole dropdown. Do you have online example of your code?
Yes, it is possible to add a class name, you can use optionClass option for that.
Thanks
Actually it was not one additional dropdown. I loop through and add a divider after every group. so there are 10 dividers. The dropdown itself opens and closes fine. It is only when I click on a checkbox. It takes about 3 full seconds for the action to occur. Very odd. Do you think it would be better to set this up as a list rather that select group?
It depends on your list, i never experienced such issues with multiselect groups – recently i used it in one application with hundreds of entries and didn’t experience any performance issues, so might be something to do with your code. Would be really great if you can share your code with me so i can take a closer look into this.
Thanks
Hi Eugene. Here is the js code I am using. Thanks again for such great service.
$(function() {
$('.loc-chooser').multiselect({
selectedClass: null,
numberDisplayed: 1,
onChange: function(option, checked) {
var values = [];
$('.loc-chooser option').each(function() {
if ($(this).val() !== option.val()) {
values.push($(this).val());
}
});
$('.loc-chooser').multiselect('select', option.val());
$('.loc-chooser').multiselect('deselect', values), $.uniform.update();
$('.loc-chooser').siblings('div').children('ul').dropdown('toggle');
});
blockControls();
window.location='?loc='+$('.loc-chooser').val()
}
$(".styled, .multiselect-container input").uniform({ radioClass: 'choice'});
})
<select class=”loc-chooser” multiple=”multiple”> <cfloop query=”getloc”> <cfif regFlag eq 0><option data-role=”divider”></option></cfif> <option value=”#location#” <cfif url.loc eq location>selected=”selected”</cfif>> #location# </option> </cfloop> </select>
I don’t clearly understand why you trigger select and deselect in the same menu and force dropdown to close on on change. Can you try to remove that bit of code in onChange and test your issue again if it still exists?
Thanks
Hi again. I use the both the deselect and select because one prevents multiple selections and the other prevents deselecting. I do not want null values to be possible. I also tried removing both to see if that made a difference and it did not. I have decided to use a class to style each option that is the first part of a group, rather than use a divider. I will keep trying to look for a solution, but will go with this for now. Thanks again for your great support.
Always welcome, let me know if you have any other questions. Thanks
Hello, Thanks for this amazing template. I use it with newest version of jquery but in app.js (because I don’t use fixed bottom navbar) the expression $(’.navbar-fixed-bottom’).outerHeight() in containerHeight() function returns undefined instead of null, that broke height calculation. I hotfix by removing this part but can you adapt for latest jquery version this function in next release ? Thanks for your help Best regards Luc
Hey Luc
Of course, i have tested it with latest version of jQuery, but some of plugin didn’t support it. In the next release i will try to find a solution for those plugin and upgrade jQuery to 3.0 versions.
Thanks!
hai, we have integrated images through Uploaders – BS File Inputs.we just want to know how to save that in local and how to retrieve it back from the local.
Hi
I am sorry, but i don’t understand what you mean by save in local. Maybe documentation will be useful.
Thanks
Hi, for the form_multiselect.html page, I am working with one of the examples but only allow one selection. I prefer the look of the multiselect. But I would like to prohibit the user from deselecting, since that would cause a null value. When the user makes a selection I update the url and query runs on url variables. Here is my code so far. Could you tell me what to add to stop the user from being able to unselect.
$(’.month-chooser’).multiselect({ selectedClass: null, numberDisplayed: 1, onChange: function(option, checked) { var values = []; $(’.month-chooser option’).each(function() { if ($(this).val() !== option.val()) { values.push($(this).val()); } }); $(’.month-chooser’).multiselect(‘deselect’, values), $.uniform.update(); $(’.month-chooser’).siblings(‘div’).children(‘ul’).dropdown(‘toggle’);
blockControls();
<cfoutput>window.location='?fy='$('.fy-chooser').val()'&month='$('.month-chooser').val()'&showstates='+'#url.showstates#'</cfoutput>
}
});
Thanks so much!
I found the solution. To add this line to prevent deselecting: $(’.fy-chooser’).multiselect(‘select’, option.val());
Thanks for the tip and glad you’ve found a solution! 
I’m looking to use the Dual Listbox, but need grouping (optgroup) support so the items can display in the appropriate groups and clicking the group would automatically select all of the items inside it.
Hi, I guess Inbox is still missing in this theme? We need Inbox, just purchased it and did not evaluate the availability of inbox feature. Old discussions show it is being discussed since last 10 months.
Hi
Inbox will be ready by the end of this week. Meanwhile, could you please send me an email to e.kopyov[at]gmail.com with layout and theme you are using?
Thanks
Hi Eugene, could you tell me which file to update so that I can add some easein transition to the left side bar when you toggle between regular side bar and mini? I like for there to be a smooth transition of about a second rather than just open/close. Thanks!
Hey there
Sidebar transitions are not available at the moment, at least CSS transitions. It changes “width” property and hides all components except navigation, so you also need to add transitions to nav text, groups etc. Performance wise, it’s better to have simple switching, because a lot of other components already using transitions.
You can play around with sidebar.less file – .sidebar-xs and .navigation components, but i didn’t test them so i can’t tell you form sure what exactly needs to be changed unfortunately.
Thanks
thanks for your reply
always welcome!