Discussion on Limitless - Responsive Web Application Kit

Discussion on Limitless - Responsive Web Application Kit

By
Cart 13,880 sales
Well Documented

Kopyov supports this item

Supported

This author's response time can be up to 5 business days.

2227 comments found.

Hi Kopyov, thank you very much for the great theme. As other user had already stated here, I also wait for the left side menu for mobile is being implemented. Do you have plan to implement it in the near moment ?

Hi,

It is planned for the next update, upcoming update is already in development and won’t include this option, because it requires quite a lot of changes. In the next one i’ll add a separate version for all layouts that will use that kind of sidebar.

Thanks

Hi, What about using Limitless with Joomla is it possible?

Thanks,

Pedro

Hi,

Limitless is a static HTML template. You can use it as a base for Joomla admin panel, but you’ll need additional development.

Thanks

You can disregard my previous problem with the compiler error. I figured it out (sorta).

Great, let me know please if you have any other questions.

Thanks

i use visual studio 2012 and framework version 4.5. tried to run just a basic page and get: The compiler failed with error code -2147024888. any ideas?

Hi, amazing work with this theme! Iwas a very happy customer of Aquincum couple years ago and now i know for sure what i;ll buy next :)

I have a question/little bug regarding color system and buttons on “Default” theme.

I’d like to be able to tweak a bit button color behavior to lighten up when in :hover state ( :normal, ligthen color on :hover, darken color on :active ) I looked under the hood of the demo with Chrome Inspector and found out that the :hover state is actually generated with inset box-shadow. When I changed it to white with transparency it almost worked making button background lighter but the button border color wasnt affected(bug?) I did the same test on “Material” version and it worked perfectly making the border color also lighter. Iam not sure if its a bug or a feature? ;)

Or maybe You could add an option for buttons to bahave in this way? Normal->lighten->darken, it sometimes helps buttons to stand out, be more noticeable and suggests action associated with it. Your subtle is good but its a little bit too subtle for my current needs :)

Thank You Cheers

Hi,

Thank you very much!

Yeah, this method with shadow allows you to use same color for all button states, but darken/lighten them with box shadow. This helps to reduce CSS code, otherwise you need to set specific colors for all states in CSS and that could be pretty much heavy. You can easily change shadow transparency in 1 LESS file for light and dark buttons.

Yes, this is a minor bug which i didn’t notice in the previous update, i’ll fix that in the upcoming update using same technics i’ve used in material version – remove border in all buttons except default and increase padding for 1px to get the same size as other elements.

Thanks for pointing that out!

Hello, Great work on this template ! I have an issue using the panel.

My panel doesn’t take 100% width on the template ( like a col-lg-12 should do in a bootstrap app ) it just adapt the width to the content. Do you know how i can force the width of panels to be like a col-lg-12 class would do ?

Best regards, Marc

Hey Marc,

Could you please raise a new ticket on http://kopyov.ticksy.com and attach a code sample of your panel? Just want to make sure you have a license first.

Panels don’t require any grid classes, they should have 100% width by default, must be some issue with your code.

Thanks

Hi Fantastic can I import properties using an XML feed from other estate agents when I have set it up for property information

Many thanks

David Ashton

Hi,

It depends on your app functionality, Limitless is just a static HTML template and doesn’t have any server side integrations. So if you’ll have that feature – yes, you can do that ;)

Thanks

hi, menu on the left often gets stuck when you scroll up and down with the mouse, if I click once on the left menu, then sliding up and down smoothly .. how can I solve this?

hi menu on the left often gets stuck when you scroll up and down with the mouse, if I click once on the left menu, then sliding up and down smoothly .. how can I solve this?

Hi,

Could you please raise a ticket on http://kopyov.ticksy.com using your license code? I’ll be able to help you out once you confirm that you’ve purchased the template.

Thanks

Hi, We are into SaaS, where we creates one end product and users subscribe to our service. We have multiple instances of same end product for each subscribed customers.Will extended license will be sufficient?

Hi there,

Yes, 1 Extended license should be totally enough for your project since you are going to use it in 1 project with multiple customers.

Thanks

Hi!

I have a question about AJAX data tables once again.

( * )
As far as I see they accept such data arrays:
{
  "data": [
    [
      "Tiger Nixon",
      "System Architect",
      "Edinburgh",
      "5421",
      "2011/04/25",
      "<span class="label label-info">$320,800</span>" 
    ], 
   etc
  ]
}
i.e. there are no labels for data.

Is there any way to use a bit different data without interfering with the source code of the template?

Example:

[
  {
    "title": "Tiger Nixon",
    "occupation": "System Architect",
    "city": "Edinburgh",
    "zip_code": 5421,
    "date": "2011/04/25",
    "label": "<span class="label" label-info="">$320,800</span>" 
  },
  {
    "title": "Tiger Nixon",
    "occupation": "System Architect",
    "city": "Edinburgh",
    "zip_code": 5421,
    "date": "2011/04/25",
    "label": "<span class="label" label-info="">$320,800</span>" 
  }
]

Or do I need to write my own custom function to handle the transfer? The problem is that current solution (*) is not resilient, if there are any changes in API, which supply the data.

Many thanks!!!

Hi,

As stated in Datatables docs for ajax option: “DataTables expects the table data to be an array of items in the data parameter of the object (use the ajax.dataSrc option of ajax as an object, if your data is formatted differently)”.

Thanks

I see Many thanks!

I shall refer to their docs

Always welcome :)

Hi, Thanks for the great work you’ve done. I’ve purchased the template about one month ago, I’d like to reproduce the Styled file input (forced) effect in the form/floating label but wasn’t able to do it. I understood that we have to use the uniform plugin but I only managed to have a pink button which doesn’t behave as a file upload button.

Can you please explain how you did ? Thanks

Hello,

Assuming you are using material version? In this case here is the code you need to use:

// Floating labels
// ------------------------------

// Variables
var onClass = "on";
var showClass = "is-visible";

// Setup
$("input:not(.token-input):not(.bootstrap-tagsinput > input), textarea, select").on("checkval change", function () {

    // Define label
    var label = $(this).parents('.form-group-material').children(".control-label");

    // Toggle label
    if (this.value !== "") {
        label.addClass(showClass);
    }
    else {
        label.removeClass(showClass).addClass('animate');
    }

}).on("keyup", function () {
    $(this).trigger("checkval");
}).trigger("checkval").trigger('change');

// Remove animation on page load
$(window).on('load', function() {
    $(".form-group-material").children('.control-label.is-visible').removeClass('animate');
});

// File input
$(".file-styled").uniform({
    fileButtonClass: 'action btn bg-pink-400'
});

Please note that ordering matters here, so use uniform AFTER floating labels config.

Let me know please if that worked out for you.

Thanks

Hi,

thanks for your answer. I used your code with the default version and it worked perfectly!

Thanks again

You are always welcome!

Hello,

First of all, Congratulations for the great template. Great Work!! I am facing issues with multiselect and checkboxes styling. I have read the already existing questions on this issue in your comments section and tried everything you suggested to other people but still I am unable to sort it out.

1. Multiselect – Unable to get styling of class select-custom-colors and select-result-colors. When I added select class to it and use $(’.select’).select2(); it shows something but still I am unable to color it. I have just added select.min.js and other relevant jquery and bootstrap classes.

2. Check boxes: Same issue. Unable to get styling of classes control-primary and control-success and etc. Only class styled is working. I have added uniform.min.js and form_checkboxes_radios.js.

Why this is happenning? Please help I have to submit the project in 24 hours. I am stuck.

Kind Regards, Thank you.

Hello there,

1. You are initializing Select2 with default functionality, without color classes. In your case, you need to use this configuration:

Load select2.min.js
<script type="text/javascript" src="assets/js/plugins/forms/selects/select2.min.js"></script>

and initialize it:

// Custom menu and results color
$('.select').select2({
    containerCssClass: 'bg-indigo-400',
    dropdownCssClass: 'bg-indigo-400'
});

Feel free to change ‘bg-indigo-400’ to any color helper class.

2. Same here, you need to load uniform.min.js and initialize it with the following code:

// Default initialization
$(".styled").uniform({
    radioClass: 'choice'
});

3. Please do not use any files from assets/js/pages/ folder. As you can see here, there’s a lot of different configuration options of Select2 plugin, you just need to pick one you actually want to use and add it to a new js file. For example, create a new custom.js file, load it after all JS files on your page and place all plugin initializations (those mentioned above for select2 and uniform) in there. In this case your code will be clean and organized, without extra stuff that is not in use.

Let me know please if that worked out for you.

Thanks

Yes, I tried it yesterday and found the solution from one of your answers to another customer and the idea of adding custom.js worked perfectly. Thank you, you saved my day.

Glad it was resolved :) Always welcome!

Hi,

I would like to combine AJAX sourced data in data table with (copy, csv, excel, pdf and print) buttons.

Can you hint on how to do that?

I could not find how the buttons are initiated

Hi,

By default Datatables library allows you to combine extensions, so basically you just need to load buttons.min.js file (located in assets/js/plugins/tables/datatables/extensions/) AFTER datatables.min.js and add proper option in configuration, for example:

// AJAX sourced data
$('.datatable-ajax').dataTable({
    autoWidth: false,
    dom: '<"datatable-header"fBl><"datatable-scroll-wrap"t><"datatable-footer"ip>',
    language: {
        search: '<span>Filter:</span> _INPUT_',
        lengthMenu: '<span>Show:</span> _MENU_',
        paginate: { 'first': 'First', 'last': 'Last', 'next': '?', 'previous': '?' }
    },
    ajax: 'assets/demo_data/tables/datatable_ajax.json',
    buttons: {
        dom: {
            button: {
                className: 'btn btn-default'
            }
        },
        buttons: [
            {extend: 'copy'},
            {extend: 'csv'},
            {extend: 'excel'},
            {extend: 'pdf'},
            {extend: 'print'}
        ]
    }
});

That’s pretty much it. Thanks

Many thanks!

That is exactly what I needed!

Hi, can you please point me to document, on how to build my site exactly like it’s presented in demo (Home>presentation 1) Thank you!

Hey,

Sorry, but i don’t understand what you mean. Package contains an exact copy of live demo, with a few minor differences: no images, includes LESS files and both compressed/normal CSS files. All files are static and you can use it as a base for your project, it’s ready for integration. But i can’t suggest you anything at the moment, because i don’t know what you want to build and what framework/code base you want to use.

Thanks

Hi i like you theme now i have some question how to desktop version for iPad air , iPad mini

Hi,

Sorry, but i didn’t understand your question. You want to show desktop version on ipad?

Thanks

Hi,

I use fix column, it works for both left and right, but the last column on the right little bit shift to the left, it happens on Windows only, just found it on chrome and edge on windows 10. Can you test it and find the same problem ? Which one css to fix it ? If you can’t find, I can share the link in email.

Hello, I sent the email to you about this problem. Let me know if you got that email, to check my live page using fixed_column extension.

Sorry I found the solution, just override the class, I forgot !important before, thanks.

``` .DTFC_RightWrapper { right: 0px !important; } ```

Hey,

Just replied back.

Is the fancybox close button suppose to be at the top right edge of the screen or top right of the image?

By default at the top right of the image, but i’ve changed it in the latest update.

If you want to change to default position, here is a CSS override:

.fancybox-close {
    position: absolute;
    top: -40px;
    right: -40px;
}

Thanks

I would only recommend that you remove the vertical scroll bar since it is covering the close button at the upper right corner of the screen (hence why I asked the my question).

/*overflow-y: scroll;*/

Oh okay, will test that as well. I’ll also need to fix a few minor issues with this plugin in RTL version, so i’ll definitely go through all options and fix this kind of issues.

Thanks

Looking for admin template with a black background theme. Do you offer this in any of your templates?

Hi,

Limitless doesn’t have dark theme at the moment, it is planned for future releases.

You can check out It’s Brain, it does have a dark layout.

Thanks

Hi, it’s a great theme indeed, thank you. We would like to ask if you could add “fineuploader” script because it has a better compatibility with Amazon S3, chunk and pause/resume support. You can check it in http://fineuploader.com , there is a comparison chart with plupload and dropzone. Thanks again.

Hi,

Many thanks for suggestion, just reviewed and i think i will add it in the next update! :)

Thanks

Thank you very much!! ;)

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey