2227 comments found.
Hai , we have integrated editable fields inside the table and we want to disable the editable by default, allow only when user enable the toggle at the top…how to changes this pls suggest the soln
Hi
You can use the same logic as in demo:
// Toggle editable state
var toggleState = document.querySelector('.switchery');
var toggleStateInit = new Switchery(toggleState);
toggleState.onchange = function() {
if(toggleState.checked) {
$('.editable').editable('enable');
}
else {
$('.editable').editable('disable');
}
};
Thanks
Yes we tried this, but when page loads it shows in blue color for the first time then once page loads completely it turns into readonly mode..so can u suggest the soln
Did you try to add:
disabled: true
option to your config? Should work this way.
Thanks
Sorry can u pls explain briefly in which file do i need to change this to work
In your configuration, should look like this:
$('#selector').editable({
...
disabled: true
});
Thanks
I have tried this solution in the datatable but it doesnt work. i have added in code through mail…please verify.
Replied back
Hai i tried adding to specific config aswell,still it doesnt work.. when page loads, for few sec its in blue color and then it changes to grey read only mode…. jus remaining abt the issue
Hey
That’s strange, i’ve just tried the same code i’ve sent you and everything works fine for me. You can also try to use defaults, this one worked as well:
$.fn.editable.defaults.disabled = true;
Thanks
Hai, i have been trying out the solution will get back once its fixed
I have one more query I have been trying to use sidebar_mini_collapse, in which i have some filters at the left as collapse and i have table with HTML 5 buttons at the right. I have a prob that if i have HTML 5 buttons buttons script in my page then sidebar was not collapsable.. please suggest me the solution.
Still the fix doesnt work i have shared the tried code thru mail,please verify
Hey
Sidebar – i don’t quite understand what you mean. I need to see your code before i can provide you a solution 
Thanks
thanks this has been fixed
Hi Eugene, I just sent you an email with issues I’m having with the tooltip component. Looking forward to your help. Thanks, Yogev
Replied back
Hi! When you resize (reduce width to phone width then enlarge to normal width) the page http://demo.interface.club/limitless/layout_2/LTR/default/sidebar_detached_sticky_custom.html the scrollbar isn’t sticky anymore. Is this bug fixable ? Thanks
Hi
Yes, in real world you don’t need to resize browser to mobile width and back. You can add another function to initialize custom scrollbar when browser width is more than 768px, but personally i wouldn’t suggest to do so.
Thanks
My goal is to navigate only with ajax into the whole admin app, so I need to call $(’.sidebar-detached’).affix(); in the loaded fragment. In General, initialize repeatedly JS components without reloading the page increase the use of memory and slow down the interface, or the memory is released when elements are replaced in the DOM without calling particular function?
Hello…
i have problem to install the theme in my wordpress server… i have the The package could not be installed. The theme is missing the style.css stylesheet.” i try to install from the Wordpress system or updoad to the local folder of theme, but i got the same message.
i download the zip file called themeforest-13080328-limitless-responsive-web-application-kit many time from https://themeforest.net/downloads but i get the same issue.
this zip file only have the 5 layout folder
Hi
Limitless is not a Wordpress theme, it’s a static HTML template as stated in item description. In order to use it as admin theme, you need to develop Wordpress plugin
Thanks
In the next update you could include layouts for forums?? thx
Hi
Hopefully yes, either in 1.6 or 2.0.
Thanks
cool!
Hello, I want to ask how i can apply center for text in content ( h1 and p )
Thank you
Hello
You can use class=”text-center” helper class applied to h1 or p tags.
Thanks
Hi,
Similar to a previous question of another user “in data table the right side dropdown menu is overlaping when open in last row”
You provided a solution, but when the proposed dom is applied, the htmls5 buttons (print, copy, pdf etc) disappear. Overlapping is also fixed by
dom: '<"datatable-header"fl><""t><"datatable-footer"ip>'
but this also make html5 buttons to disappear. Is any solution to fix both?
Also, is any setting / option in datatable to pdf, the generated pdf to be landscaped? Or maybe another option to make table fit in wide?
Thank you
Hi
If you are using Buttons extension, you need to add “B” option in the dom:
dom: '<"datatable-header"fBl><""t><"datatable-footer"ip>'
Thanks
Handsontable has a “sticky” header, when scrolling down. But with fixed navbar it overlaps handsontable header. Is there some good solution to have offset to the handsontable header by the size of the fixed navbar?
Hi
As far as i know, there’s no any solution at the moment – handsontable doesn’t have any offset options and CSS hacks won’t work here, because sticky header position is calculated dynamically depending on scroll position.
Thanks
Hi, I see in the demo version, that all JS is included in <head>... If I try to include it on bottom, some components do not work properly or CSS. Also CSS not working in VueJS framework. Is this the same for the purchased theme ?
Hi
Sorry, but i don’t understand your question. You can easily include JS files before body closing tag, it won’t affect functionality. CSS files need to be in head by default.
The template doesn’t use any specific setup or versions of CSS files, so they should work with any framework, if they don’t work in your case, must be something wrong on your side.
Thanks
Hi, in data table the right side dropdown menu is overlaping when open in last row have a look on the screenshot you will have an idea what I am talking about. Will you please, help me or suggest me what is wrong to fix.
Screenshot : https://www.dropbox.com/s/sjf94kzfw3yc76x/right-menu.png?dl=0
Hi
There are 2 possible solutions – 1st one is to remove class name which adds scrollbar to the table, change DOM option from this:
dom: '<"datatable-header"fl><"datatable-scroll-wrap"t><"datatable-footer"ip>'
to this:
dom: '<"datatable-header"fl><""t><"datatable-footer"ip>'
Second solution is to change position of last 2 or 3 dropdowns to display them above button. This is a default solution, which uses this code:
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');
}
Thanks
Hey there!
Quick question. I am designing a Dashboard page based on the Style 1 > LTR > Index. Looks great, but when the browser window is smaller than 1200px, everything becomes 1 column.
Is there a way to have the page ignore the responsive column settings for smaller screen resolutions? Or, at least have columns for the 1024+ screens?
Tx!
Hello!
Bootstrap grid is responsive by default, to avoid significant changes in core CSS files, you can use .col-xs-* class names, they are not stackable on small screens.
Thanks
Yes, that was perfect! Tx!
Always welcome 
Hi,
When I try to download the 1.5 update I get the 1.3 instead (themeforest-13080328-limitless-responsive-web-application-kit). Not sure what I am doing wrong. How to download the updated 1.5?
Thanks
Hi
When new version is uploaded, file name doesn’t change. Try to unzip the package, you should get “limitless_1.5” folder.
Thanks
Hi, it’s possible remove the EDIT fields of the daterangepicker? Just like the original plugin when poppup. I would like to see only ranges and custom. It’s beacuse I have several ranges and the picker turns very long and I need remove the input edit fields. Thanks.
Ok I found a fast solution, I just replaced css style with:
.daterangepicker-inputs { display: none; }
Hi
As far as i know, you can’t hide input fields in config using default set of options. You can setup a set of buttons, but input fields are always visible. You can however hide them with CSS, but i would suggest not to do so, because input fields are a great addition to user experience, would be better to allow user to enter custom date.
Thanks
Yes I know, Im going to keep it for now. I just removed extra padding (top and bottom) in the ranges items to make it shorter.
div.daterangepicker > div > .ranges > ul > li { padding-top: 3px; padding-bottom: 3px; }
Thanks
You can also reduce vertical spacing in .ranges .daterangepicker-inputs – section with input fields.
Thanks
Question about upgrading. You mentioned that if upgrading from 1.3 to 1.5, you should do it individually so that you don’t miss bug fixes in less files. What if I only use css? Are the less files even needed? Thanks
Hi
LESS files allow you to quickly change things, as a set of source files. If you don’t want to use them and/or update existing themes, you can just swap CSS files from the latest version 
Thanks
Hey, this admin skin include pricing tables ?
Hey
Pricing tables will be added in the next update.
Thanks
Do you have a Master Detail Example in the Limitless template. I have looked through and was not able to find one.
Thanks and I have purchased all your templates. Great Work!
Hi
I am not sure i understand what you mean. Some kind of kitchen sink, with all available components in one place?
Thanks!
No sorry I was not very clear. I have an Datatable and want to supply a detail row if the master row is clicked.
No worries, i always forget to add this example
You can check it out here, configuration is right below the table.
Let me know if you need any help with styling.
Thanks
Great! Thanks I found that earlier so I think I am all good. I will let you know if I need any advice on the styling
Is dark background available for the theme?
Hi
Not yet, but planned for future updates.
Thanks
it’s quite asked often but i guess it’s postponed over and over..
Hi
As promised, it will be included in one of upcoming updates. I didn’t update it since your last message.
Thanks
Hello,
Generally we have not understood how is working the translation. By example we are looking for to change the option “Filter:” in the datatables to French. Can you explain us what we have to do?
Thanks
Hello
In most cases you need to check plugins documentation, everything is very well explained in there.
For example, in datatables there is a language option, which is responsible for internationalization. And in datatables configuration you can see this bit:
language: {
search: '<span>Filter:</span> _INPUT_',
lengthMenu: '<span>Show:</span> _MENU_',
paginate: { 'first': 'First', 'last': 'Last', 'next': '→', 'previous': '←' }
}
So you can translate Filter, Show, First and Last labels into French directly in DT config. For more available options please refer to Datatables options page mentioned above.
Thanks
Hello. I know that my support already expired, but I need that you help me with something that is killing me and I don’t know how to fix it.
I’m using the fullcalendar, just like you did in your demo (same version and same files). I’m using the same core and components css. Please check this image to check what I mean: https://s27.postimg.org/rzqjpgfwz/calendar.jpgI don’t know why is showing a gray layer over the calendar in “agendaWeek” view.
Please let me know, thank you.
Hello
I need to see your code first, not sure at the moment what could be wrong. The only thing i’d suggest to check is default date in your config.
Thanks
Hello, thank you for reply. I sent you an email with all the details to access the demo. Please let me know.
Hello, I just bought the model which is very good indeed. I wanted to know if it was possible to put it in French and how I could do it. (I am a beginner student) Thank you very much
Hello
Well easily! During development, you just need to translate all navigation/page titles/elements to French, also a lot of libraries support internationalization and include language packages.
Let me know if you have any difficulties with the code.
Thanks
Hi,
Thank you, I understand the operation better. I started translating little by little.
I would like to know if it was possible to connect it to the Active Directory and how I could do please (what file … if you can please)
Thanks
Hi
Unfortunately i can’t help you much with Active Directory connection, because i am not familiar with this kind of implementations.
Sorry about that,
Thanks