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,

How can I change the pagination style of datatables??

Hi

You can change pagination type using pagingType option. Here you can find more info.

Thanks

Hi, I’m interested in buying your template, but before that could you please help me with the following doubts:

1. Once I pay do I have access to updates indefinetely? 2. Can I use the template for any commercial and non profit project? 3. If I want to create a single page application with react, do I get support to achieve that?

Hi

Thanks for your interest.

1. Yes, all future updates are free.

2. Yes, but depends on what you are going to do next with your application. More info about licenses you can find here.

3. You will get a support related to the template only. I can’t provide support for third party extensions or development process.

Thanks

Hi, just info/Fix on extra_session_timeout.html (full example), you need add bracket after “function” :
...
    onWarn: function{
        console.log('Your session will soon expire!');
    },
    onRedir: function{
        alert('Your session has expired!');
    }
...
change to
...
    onWarn: function () {
        console.log('Your session will soon expire!');
    },
    onRedir: function () {
        alert('Your session has expired!');
    }
...

nice job :)

Hey

Nice catch! Will be included in the upcoming update.

Thanks!

Hai, in my datatable i have used common dropdown other than editable dropdown ,so we have disabled it manually in script as follows when edit toggle is disabled

$(’.projectProductSelectLock’).prop(‘disabled’, ‘disabled’); var toggleState = document.querySelector(’.switchery’); var toggleStateInit = new Switchery(toggleState); toggleState.onchange = function() { if(toggleState.checked) { $(’.editable’).editable(‘enable’); $(’.projectProductSelectLock’).removeAttr(“disabled”); $(’.projectProducteditablelock’).attr(‘style’,’display: ‘); } else { $(’.editable’).editable(‘disable’); $(’.projectProductSelectLock’).prop(‘disabled’, ‘disabled’); $(’.projectProducteditablelock’).attr(‘style’,’display: none !important’); } };

but it was not disabled for multiselect dropdown but it works for single select dropdown so can u pls suggest us the solution.

Hi

To disable multiselect, you need to use this method:

$('.your-multiselect').multiselect('disable');

Thanks

Thanks it works!

Always welcome :)

Hi there,

I love the Portal, it’s insanely awesome & very detailed….THUMBS UP.. What else can the Portal be used for except Web Application, what can a corporate business/company use this Portal for, please give me ideas here as I would like to implement it to my 10 existing corporate clients…

Thank you

Hey

You can use it as a base for anything – website with vertical navigation, intranet portal, management apps, dashboards, analytics, statistics, documents, directories etc etc. But main purpose is applications of course :)

Thanks!

Hi,

We are using the “Multiple columns” form layout of /default/form_layout_horizontal.html page to design our application. But while we are trying to add the form validation of /default/form_validation.html page it doen’t work. Can you please give us the right syntax to use the same validation on Multiple columns at form_layout_horizontal.html ?

Hi

Can you please send me your markup and list of JS files you are using on your page to e.kopyov[at]gmail.com?

Thanks

Issue with checkboxs displaying in forums:

When you place a styled checkbox in a form it ends up looking like this: http://i.imgur.com/MwFwiZW.png

                                    <div class="col-md-3">
                                        <div class="form-group">
                                            <div class="checkbox">
                                                <label>
                                                    <input type="checkbox" name="completed" value="1" class="styled" />
                                                    Complete
                                                </label>
                                            </div>
                                        </div>
                                    </div>

Hi

Image isn’t loading for me. Here is a correct markup for vertical layout:

<div class="form-group">
    <label>Name:</label>
    <div class="row">
        <div class="col-md-6">
            <input type="text" class="form-control">
        </div>

        <div class="col-md-6">
            <div class="checkbox">
                <label>
                    <input type="checkbox" class="styled">
                    Complete
                </label>
            </div>
        </div>
    </div>
</div>

Thanks

Hello, any news of angular version talked in comments 9 months ago ? It have been said it could be ready last summer. Thanks anyway.

Hello

Unfortunately it’s in a very early stage and too early to announce any ETA, i’m currently focused on Bootstrap 4 version and new functionality.

Thanks

Np, thanks about informations and glad it’s still on the way :)

Dear Kopyov,

I need to relocate the resource directory (assets/starters etc). I see, in this case (I modify the css/js url) the icons lost, but other images work normally.

Could you help what I need to change in the code to show correctly everything, because I need to relocate this folder.

Many thanks, Szabolcs

Sorry, that was my fail. I didn’t change one css path. :s

Hey Szabolcs

No problem, also check paths to font files in assets/css/icons/icomoon/styles.css, if you want to check font files location.

Let me know if you have any further questions.

Thanks

Hi,

I have purchased this, its looking great.

Is there anyway that I could make the content panel full screen??

Thanks

Hey

This functionality is not supported in current version, but you can easily add it yourself with a few lines of CSS and JS. You can check out this simple example.

Thanks

Hi, is any way to close (or collapse) the sidebar on SM size automatically? I think side bar is collapse only on XS. Thanks

Hi

Basically yes, it is possible, but you would need to edit breakpoints in sidebar.less file. However i wouldn’t suggest to use SM – it’s using general navbar breakpoint to collapse navbar and sidebar on the same screen width. Sidebar toggler also displays only when navbar is collapsed.

Thanks

создал тикет, жду ответ https://kopyov.ticksy.com/ticket/1055588/

Ответил

спасибо!

Why are you using not original but modified bootstrap.css? For instance where did you see body background color #f5f5f5 in original BS version?

Hi

CSS files are not modified, they are compiled from LESS files. And LESS files include 2 parts: original set from Bootstrap without any modifications and overrides (variables and core files). So if you override @body-bg variable and re-compile LESS files, CSS files will include your value, not default one.

Thanks

I understand that. But your styles should override default BS styles. In case I’m using NPM it’s impossible to change variables and recompile LESS files from package. So now if using BS that is not bundled with your theme(installed standalone with NPM/Bower) you’ll get #fff background instead of #f5f5f5.

Just an advice.

Well in this case you need to completely override all less files, including necessary variables: original bootstrap css + custom css with bootstrap overrides + components.

Bear in mind, if you want to go this way and you override 1 bootstrap variable, you need to duplicate all styles where this variable is used. So overriding variables is a simplest way and most common practice to keep CSS as lightweight as possible. Although it’s not the easiest way to use it with Bower.

Thanks

Has the theme got right sidebar.

Hi

Yes, this and this options.

Thanks

Hi, I have a question, so I have a dash.php file where i am outputting some data, now i was trying to show that data via graph from Limitless- Web kit from layout_2 -> LTR -> default -> user_pages_profile.html. Now, for that I included all the links which where required and also copied the assets folder. Also, for the graph I just copied the 20 lines code from user_pages_profile and pasted in dash.php. I am sure my code is right, but still it is not showing me the data as shown in layout_2 file?

Thanks in advance!!

Hey

Would be better if you email me your code to e.kopyov[at]gmail.com, need to see it and test locally. Do you get any JS errors in browser console? Chart config is more than 20 lines of code, i think you’ve missed some bits ;)

Thanks

Hi, i just sent to email, can you please help me with problem, email is from gurkaranboparai1120. Thanks!!

Replied back

Hi, your Limitless – Responsive web kit works great! But I have a question, so, on the user profile page the graph which you are using for daily statistics having id=sales, may i know where is the data for that graph i.e from where does the data come for example for sales, profit and so on. i.e if you go on layout_2 -> LTR -> default -> user_pages_profile_html and search for sales.

Thanks in advance!

Hi

The data comes from chart configuration:

// Add series
series: [
    {
        name: 'Profit',
        type: 'bar',
        itemStyle: {
            normal: {
                label: {
                    show: true,
                    position: 'inside'
                }
            }
        },
        data: [200, 170, 240, 244, 200, 220, 210] // values
    },
...

And here you can find an example with dynamic data.

Thanks!

Hi, I like your theme! With $24 regular license can I build a product based on this theme and sell it by my own without no extra fees?

Thanks.

Hi

According to License terms, if you’ll be using the template in an end product that’s sold, you need an Extended license.

Thanks

Hi, I am using the bootstrap uploader given in the template. I would like to know if there is any way to integrate the uploader and the cropper so that when the user uploads an image, it is default opened up in the cropper and then after selection, it is shown in the uploaded form. Please let me know.

Hi

You can try to use onFileSelect event and initialize cropper inside of this event when files are selected in the file input via the file browse button.

Thanks

hi kopyov Add 2 properties for limitless

1.) google contatcs view , left block and center block etc.. ( http://i.hizliresim.com/g23obL.png )

2.) head http://i.hizliresim.com/ZMbdnA.png

Hi

Thanks for suggestions, i’ll consider them for future updates.

Hi Kopyov,

Awesome work on this theme, building our core app on this theme and loving it.

I’m having a problem with the jQuery and noUI sliders. I can’t get them to load on the starter page even though I’ve called their libraries in the <head> such as <script type=”text/javascript” src=”../assets/js/plugins/sliders/nouislider.min.js”></script>

Does the starter pack CSS have the relevant classes/ID for the noUI or should I use the CSS assets from the main pack?

Any ideas why this isn’t showing?

Hi

Starter kit doesn’t include CSS of any 3rd party components, just a basic CSS with layout setup.

If you are going to use starter kit, you need to open components.less file (assets/less/_main_starters/), find path to noui-slider.less file, uncomment it and re-compile less files. After that your components.css file will include all necessary NoUI slider styles.

Please refer to documentation for more information about starter kit.

Thanks

Hey Kopyov

Thanks, after your comment I went through this in detail – I opened ../assets/less/_main_starters/components.less and uncommented all three lines I could find in the Sliders section

I then recompiled the CSS with

lessc components.less ~/path_to_my_starter_version/assets/css/components.css

The sliders still aren’t showing. Is there something I’ve done that is wrong.

I’ve also loaded: <script type=”text/javascript” src=”assets/js/plugins/nouislider.min.js”></script>

The slider I’m trying to see is the Footer Panel NOUI Slider which the code looks as follows:

Rate him now

Hey hey

Hmm, that’s weird. What exactly do you see on your screen? Are you sure that NoUI slider is initialized properly and only CSS is missing?

Anyway, i need more information and/or to see your code online. Would be also helpful if you can email me your code (CSS file you compiled and JS code you are using) to e.kopyov[at]gmail.com.

Thanks

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