2227 comments found.
Hi! I’ve no clean how to use some feature of your Limitless web app kit. At example I’m no able to find where is explained how to use and all files needed to use Sweet Alert Bootstrap plugin. In your example layout you don’t the explain the code to use and in documentation are missed several featured with code example! For example for Sweet Alert I’ve understood that I must add sweet_alert.min.js looking inside the code but where I can find on documentation!?? Thanks!
Hi.
All plugins are presented in the documentation – some of them include options and use examples, some linking to official websites. For sweet alerts you can open plugins_notifications.html#sweet page of documentation, it does have all options and initialization explained.
In short:
1. Add path to plugin after jquery and bootstrap
2. Create custom.js file and load it on your page after app.js file
3. Open newly added custom.js file and place in there all plugins configurations – sweet alerts, other plugins and js code.
4. You can refer to js files located in assets/js/pages/ for configuration examples.
In your particular case, to launch Sweet Alerts, you need to do the following:
1. Add path to plugin:
<!-- Load plugin --> <script type="text/javascript" src="assets/js/plugins/notifications/sweet_alert.min.js"></script>
2. As an example, add a link with class=”sweet_success” attribute to your markup
3. To open alert on link click, open custom.js file and place init code for it:
// Success alert
$('.sweet_success').on('click', function() {
swal({
title: "Good job!",
text: "You clicked the button!",
confirmButtonColor: "#66BB6A",
type: "success"
});
});
That’s it. This is a standard logic behind all jquery plugins.
Documentation includes all necessary descriptions, explaining almost all features and functionality. If you find it difficult to understand, feel free to contact me for help.
Thanks
Ok, I’ve found it. But It would be much more useful if working demo were together with the documentation! It is difficult in this way! Now I can see the working demo in one of layout examples and then I have to go look in documentation! Furthermore in layout and documentation you’ve used different names! For example about the SweetAlert in layout I can found it in “Components-Modals” and in documentation it is under “Plugins-Notifications”! For this reason I was not able to find it
Hi
Well, i may assume that Modals, Bootbox extension and Sweet Alerts library are all “Notifications” or “Dialogs”. As well as PNotify, jGrowl and Noty. But all of them have different purpose and different placement, together with configuration options. That’s why they are grouped differently in documentation and template.
As being said, all jquery plugins use 1 common logic and way of working. I can’t describe in documentation all the aspects of use and the very basic stuff, such as html tags, how plugins and extensions work, how plugins are connected to the library etc. assuming developers who will work with the template already know basic things.
Documentation describes how to modify and compile styles, template structure, layout parts, components, all plugins with different configuration options and links to Github and plugin websites. It may not have the same structure as template.
Also, if you have any difficulties getting plugins to work, you can always check out plugin website, they always have “Getting started” section with all necessary info.
If you have any questions or issues, just let me know and i’ll help you out with nearly everything.
Thanks
Hi, Eugene!
I didn’t find notes on creating a repository on the description page of the theme. I’m bad looking or really not?
Hey!
Will be up and running tomorrow, just cleaned up my bitbucket repositories, everything will be moved to github tomorrow morning. Let me know please your github username, here in comments or email me to e.kopyov[at]gmail.com
Thanks
Hi there.
I have some troubles with the checkboxes. I want the styled checkboxes.
But when they are styled the checkmark doesn’t work. It is like the .js file is not loading? I’m pretty sure that I’ve added all the required .js files.
Can you tell me how to add the styled checkboxes correct? And which files I need.
Thanks in advance.
Regards Mia
Hey,
Assuming you have added form_checkboxes_radios.js file as well? If yes, this is the problem – this file contains multiple configurations of checkboxes, including switches. All you need to do is to use only 1 configuration for class=”styled” (if you use this class):
// Default initialization
$(".styled").uniform({
radioClass: 'choice'
});
I suggest you to create a new custom.js file and put all plugins inits and other extra js code in there. If you want to use demo examples, like in form_checkboxes_radios.js file, make sure you don’t init plugins on containers that don’t exist in your markup.
Let me know please if that worked out.
Thanks
Hi, thank you so much for the quick reply!
It worked
I found out to make them all do the same! Thank you!
I have another question though.. I’ve added a table with filter search, show 10v and pagination. But none of the functions are working. I figured out that I most do something wrong. But can you tell me, how it is it works? How do I make the functions work? Because when I look at the file where the table is it works, and my file is like a total copy, but it doesn’t work..
That’s weird, should work with all checkboxes and radios that have class=”styled” attribute. Please make sure you have added it to all your checkboxes, also please check your console if it shows any js errors.
Would be also nice if you can provide me a link to your project, so i can quickly review your code and find a possible source of issue.
Thanks!
I’ve added the script code to every checkbox. That is the only way it will work. I’m sorry, but I can’t provide you with a link because I’m working local.
But now that this works, I have another question: I’ve added a table with filter search, show 10v and pagination and filter. But none of the functions are working. I figured out that I most do something wrong. But can you tell me, how it is it works? How do I make the functions work? Because when I look at the file where the table is it works, and my file is like a total copy, but it doesn’t work..
This works with the same logic as checkboxes. If you have created custom.js file, you also need to place 1 or more configs for datatables (depends on configurations). No need to use any files from assets/js/pages/ directory, they are mostly for demo preview with multiple examples. So it you have multiple tables with the same functionality, you need 1 setup added to custom.js file, for example:
// Table setup
// ------------------------------
// Setting datatable defaults
$.extend( $.fn.dataTable.defaults, {
autoWidth: false,
dom: '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>',
language: {
search: '<span>Filter:</span> _INPUT_',
lengthMenu: '<span>Show:</span> _MENU_',
paginate: { 'first': 'First', 'last': 'Last', 'next': '?', 'previous': '?' }
},
drawCallback: function () {
// Initialize uniform in callback
$(".styled").uniform({
radioClass: 'choice'
});
}
});
// Datatable init
$('.datatable-basic').DataTable();
So give your tables class=”datatable-basic” and they all will work as expected.
Please notice that if you want to use any plugin such as styled checkboxes, you need to initialize them in drawCallback callback. Example above already contains it.
Thanks
I can’t seem to get it to work. Would you be able to look through my files if i sent it to your mail ?
Sure, send them over to e.kopyov[at]gmail.com. Thanks
Hi. I need to set the padding left/right in .page-container to 0px (on mobile) to extend space and native scroll look and feel. If I add
@media (max-width: 769px) { .page-container-mobile { padding-left: 0px; padding-right: 0px; } in div class=”page-container page-container-mobile” padding is OK (spaceless), but I get an vert/horz scrolling bar on MobilePhone and the bottom fixed Navbar is moved some pixel in hidden area.
Do you have an idea how to solve this? Unfortunately Responsive Size on a webbrowser (MAC) Does not have this problem. All elements are fine in one web browser (Same with as mobilephone).
https://monosnap.com/file/n6P5r2h6e5opTPSjIOTa0UwRGjMpp6Hi,
That’s strange. Could you please let me know which layout are you using?
Also would be nice to see your working application online, so i can quickly check your code and find where this issue comes from.
Fixed footer works a bit wrong at the moment – it overflows the content, i am working on a solution when footer will go below the content. This fix will be included in the upcoming update. But main functionality should work fine, probably something is wrong with markup or footer placement.
Thanks
Can I send you an email with the application link and credentials? Get crazy why this small behaviour will not work 
Sure, send it over to e.kopyov[at]gmail.com 
Thanks
Just sent you an email. Thanks !!!!
Replied back with solutions
Thanks! Just replied to you. I am too stupid ;(
Didn’t receive your email yet 
Solution working fine. Thanks! Perfect support.
You are always welcome!
Will the next update include any additional page layouts?
Hi,
I will try to include page kit for emails (reading, writing, list) in the upcoming update. The next one which will be out in March will include a lot of new pages, such as blogs/news/job listings/portfolio/etc.
The next one will include some modifications, improvements, new features, material design themes and 2 new layouts.
Thanks
hi sir i need use datapicker and calener of jalali calender. this template has solution for it?
Hey,
Unfortunately no, Limitless doesn’t have any specific calendars for RTL versions. However all datepickers and calendars support RTL direction and can be easily translated into your language.
Thanks
Hi,
I like the theme & want to purchase it.
I have a question. Bootstrap is now working on V4, will you update the template to V4 or not. As I feel they have very good features in that.
Also your template has very good feature & many page, which I want to use for a product I am working on.
Let me know your views on the same, accordingly I will buy the template.
Thanks, Jatin
Hey Jatin,
Of course, once Bootstrap team releases a first stable version of 4.0, i will add it to the template as a separate copy and will continue supporting v. 3.6+. Also i will include a complete guide about upgrading from 3.6 to 4.0 for those who want to move to a completely re-written library.
Thanks!
Thanks,
After Bootstrap team release the V.4 version how much time you will required to incorporate that in this template. Just the rough idea so that I can planned accordingly.
I think within 2-3 weeks. I will need to convert all styles from LESS to SASS, go through all pages and update all components according to the new markup and component configuration.
Thanks
Thanks for the quick response.
Always welcome, let me know if you have any other questions
One question, are you using angularjs ?
Not at them moment, Angular version will be available in one of upcoming updates. For now it’s a pure HTML template.
Thanks
upcoming updates will be in week time or months ?
For Angular it’s a couple of months, i am waiting for BS4 stable version release, until then i will be extending layout options and functionality.
Thanks
Thanks for the quick response.
Hi Kopyov,
I wanted to use this template to connect to a database and be a task manager and invoice system using the provided template you’ve made. How much would this customization be?
Hey,
Unfortunately i can’t take any custom work at the moment. Besides i am a front end developer, so i can’t really help you much with server side integration. I’d suggest to hire some experienced developer for this part of job.
Thank you!
If I buy this today and next month the next version of bootstrap is released, will upgrades to support for that bootstrap version be included in the support fee?
Hey.
Of course, all updates are free and have no time limits. Also they don’t depend on support period.
Thanks!
Hello im ussing summernote editor and im trying to put the embed video and font site with no success and you are ussing the version 6 can you update to the last one ( 7.5 ) thanks. And great theme.
Hello,
Yes, Summernote will be updated to version 0.7.4 in upcoming update. Current version doesn’t support video. Sorry about that.
Thanks
Hi. In file form_dual_listboxes.html, multi-select list scrolls to the top after selecting an item making it difficult to select multiple items in the list. How can I fix it?
Hi,
There are 2 different configurations for single and multiple selects. Single select is default, to use multiple selects you need to specify 2 options:
// Multiple selection
$('.listbox-no-selection').bootstrapDualListbox({
preserveSelectionOnMove: 'moved',
moveOnSelect: false
});
Thanks
BUG
Hi.
It’s not a bug, it’s a negative side of using default responsive tables functionality. It adds scrolling to the table container, overflow is scrollable as well. You can remove it by changing
dom: '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>'
to
dom: '<"datatable-header"fl><""t><"datatable-footer"ip>'
and use Responsive extension instead.
Thanks
Okay, thank you. I’ll try.
This parameter is not’datatables.min.js’, I’m not using ‘datatables.min.js’
Oh, in this case remove class=”table-responsive” from table’s parent container. This is a default Bootstrap responsive table functionality.
Thanks
okay, thank you
<li class="dropdown language-switch">
<a class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-user-check"> </i>
Account: VRS-000
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-submenu">
<a> Enom</a>
<ul class="dropdown-menu">
<li><a href="/DsaWebApp/Shared/SwitchAccount?Url=%2FDsaWebApp%2FDomain%2FCheckDomain&Account=ENM-000">ENM-000</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a> OnlineNic</a>
<ul class="dropdown-menu">
<li><a href="/DsaWebApp/Shared/SwitchAccount?Url=%2FDsaWebApp%2FDomain%2FCheckDomain&Account=OLN-000">OLN-000</a></li>
</ul>
</li>
<li class="dropdown-submenu">
<a> Verisign</a>
<ul class="dropdown-menu">
<li><a href="/DsaWebApp/Shared/SwitchAccount?Url=%2FDsaWebApp%2FDomain%2FCheckDomain&Account=TOP-000">TOP-000</a></li>
<li><a href="/DsaWebApp/Shared/SwitchAccount?Url=%2FDsaWebApp%2FDomain%2FCheckDomain&Account=VRS-000">VRS-000</a></li>
</ul>
</li>
</ul>
</li>
Solved, my mistake.
No problem, I think you needed to add .dropdown-submenu-left class to change position.
Thanks
Hi, My index.php file look like this :
<!DOCTYPE html> <html lang=”<?php echo $adminhtmllangkod;?>”> <head> <?php include ‘head.php’; ?> </head>
<body class=”navbar-top”>
<!- Main navbar ->
<?php include (‘modul/base/navbartop.php’);?>
<!- /main navbar ->
<!- Page container ->
<!- Page content ->
<!- Main sidebar ->
<?php include 'modul/base/sidebar.php'; ?>
<!- /main sidebar ->
<!- Main content ->
<?php include $ADMINpgpath.$ADMINpgname.'.php'; ?>
<!- /main content ->
<!- Footer ->
<?php include 'modul/base/footer.php';?>
<!- /footer ->
<!When I include a php file, appearence a space under navbartop (nearly height : 20px) If i don’t include navbar, ther is no problem. But my project requires including the part of files. I couldn’t solve the problem. Please help
I create a new PHP file Dreamviewer CS4, copied the content. When i included this file, everything is fine. I created the file (has problem) in dreamviewerCC2015. I know it’s silly but that’s it.
Hey.
That’s weird, I think there was a typo somewhere or extra symbol, so it counted default 20px vertical spacing from that symbol. If it was solved by creating a new file with the same content, might be something else. anyway glad it was solved this easy way 
Thanks
Hi, was wondering if you could advise on this. I am using blockui and would like to delay about 1 second before the block begins. How do I do that? Here is the code I am using:
var block = $('#controls');
$(block).block({
message: ' Hold tight... ',
overlayCSS: {
backgroundColor: '#fff',
opacity: 0.8,
cursor: 'wait'
},
css: {
border: 0,
color: '#000',
padding: 0,
backgroundColor: 'transparent'
}
});
Thanks!
Never mind, I figured it out with setTimeout(). Thanks
Hey,
Yep, right, just wanted to write the same
You can use setTimeout() function for custom delay, for unblocking you can use “timeout” option.
Thanks!
Hi, I would like to display the round floating button (http://demo.interface.club/limitless/layout_3/LTR/components_buttons.html) “Rounded float buttons” to be displayed static on the screen bottom right (As Google do it on material designs). Would there be a possibility or do I need to wait for your material layout?
Would like to use this action button on mobile and do not want to include ne external plugins for this “small” feature.
Hi.
Current floating button doesn’t have any specific Material design features, such as shadows, menu and animation. You can of course easily position it yourself if you need just a button, but i’d suggest to wait for the next update, there will be a complete Material theme with extended floating button functionality, something like this.
Thanks
Hey. Thanks for the info. I will start with the plugin you linked to and waiting instantly for you Februar update to switch to “native” theme functionality 
Okay great, thanks!
Hi Kopyov,
Do you plan implement frontend layouts?
Thanks
Hi,
I’d love to, but Envato doesn’t allow me to include any items from other categories for free: email templates, html templates etc. When i’ll have more time, i will try to create something and give it away for free to Limitless users, but the highest priority at the moment is Limitless itself.
Thanks!
It would be really great. We’ll waiting for additional templates.
Thanks!
I do accounting, can my clients register and use to manage their quotes, invoices and accounting?
If so can I manage to collect data for bookkeeping from my clients?
Hey,
Limitless is not a ready-to-use application, it’s just a base that developers can use for app development. So in theory yes, you can use it, but you need a developer to create a fully functional application for you.
Thanks
Hi Limitless is a great template. Thank you very much.
I love the Step Form Wizard. And am trying to use the Remote Content Source step wizard to send the POST data from each fieldset between steps. Is there any way to do this?
So what I’m trying to achieve is to enter the first fieldset data click next and have it post the data to the next remotely loaded page.
So that the next remotely loaded page displays content based upon the post data it received. That way I can query a database before displaying the next fieldset data.
I can do all the data manipulation in PHP myself. I just need a way to get the form data sent to the next remotely loaded .php page.
Thank you.
Hi,
As far as i know Steps wizard doesn’t support this feature, because the whole wizard is 1 form and each step is automatically created from form’s fieldsets. So when you switching between steps, you are just changing fieldset views.
However like in Validation example, you can use multiple set of events to achieve something similar to what you need: “onStepChanging” (fires before the step changes), “onStepChanged” (fires after the step changed), “onFinishing” (fires before finishing).
I am not an expert in php, so unfortunately i can’t help you much with data manipulation. Just want to give you a hint where to start and what to dig.
Thanks
Hi, Thanks for the reply. I’ll take a look at onStepChanging: I’m guessing it would need to be something like.
// Async content loading
$(".steps-async").steps({
headerTag: "h6",
bodyTag: "fieldset",
transitionEffect: "fade",
titleTemplate: '<span class="number">#index#</span> #title#',
labels: {
finish: 'Submit'
},
onStepChanging: function (#reg-form) {
var data = $(this).serialize();
$.ajax({
type : 'POST',
url : 'populate_db.php',
data : data
});
});
...then the rest of the function ...
Before it goes on to load the next remote content page. That might work. Thanks for your help. Really love the template.
Hi,
Yep right, might work this way. Thank you!
Hi! Great job! Good luck!
Thank you!