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.

can i add admin to sugarcm application what is the steps for it

Hi

I have no experience with SugarCRM so i can’t tell you for sure. Limitless is a static HTML template, if SugarCRM support custom design integration, it can be implemented i believe. But unfortunately i can’t provide you detailed information about it as i don’t know that system.

Sorry about that

Thanks

Not sure if I am missing something simple or not. I am using AJAX to save a record and it works fine when submitting. The problem is that if there are validation errors, it submits anyway. How can I stop AJAX from posting the data if there a validation errors visible?

Hi

You need to use submitHandler callback, here you can find some examples and solutions.

Thanks

Thank you very much for your quick response. Had trouble getting that to work but in the end I achieved success using:

if ( $(”#myForm”).valid() ) { $.ajax({ ...... }); }

Thanks again Awesome theme.

Hi

Oh yes, this is another solution, here you can find more information about that method ;)

Thanks!

Hi, So I have an issue with validation….I’m loading validate.min.js and I have required=”required” on inputs and I have class=”form-horizontal form-validate-jquery” on the form tag. It is validating when I click submit but the validation just says “Please fill out this field” in a tooltip…..

Hi

Sorry, i don’t clearly understand the problem – you want to change validation message or form submits even if it has error tooltip?

Thanks

I emailed you…hope that was ok but I want to include a screenshot.

Hi

Just replied back

Hi!

tell me what font you use in your logo?

Hi

It’s Roboto font by Google.

Thanks

I started using layout 2 default….not material but the pages I started creating that have form fields are using material design, how do I get the form fields to not use the material design?

Hi

I think you are using CSS files from material version – i just checked the package, 2nd layout (default version) has correct CSS files. Please check your files or try to replace your current ones with those from the original package.

Thanks

i replaced assets folder and it worked….thanks.

always welcome! :)

Greate design! Great work! I saw one thing while browsing,

.navigation>li.active>a .label
    background-color: transparent;
    border-color: transparent;
suppress color system. For example, check “Changelog” navigation item (span.label) when it is active.

Hey!

Ha, thank you for reporting! Already seen that behavior, will be fixed in upcoming update!

Thanks!

HI, do you have any plans on adding some AJAX features to make FORM use more userfriendly ? This is also a good solution when it comes to TASK features also.

Hi

Sorry for late reply.

What exactly do you want to get? Besides standard ajax form submit?

Thanks

If you could implement some working ajax solution for form submitting actions with limitless pnotify and forms. Or simply add some ajax script with some explenation on how to use it like you have done with all other scripts. Thanks for reply, better late than never :)

Hi

Will try to add an example, until then you can read a few detailed tutorials – Submit A Form Without Page Refresh using jQuery and Submitting AJAX Forms with jQuery.

Hope this helps.

Thanks

Does this theme have anything for ecommerce?

Hi

Not yet, but it’s coming very soon.

Thanks

Sorry this was the correct page none of the sliders are working now close comment please

Sorry this was the correct page none of the sliders are working now close comment please

No worries, let me know if you have any other issues. thanks

Hi Is there a way I can fix the sidebar (Non scroll-able) , without messing with the responsiveness ?

Thanks

Hi

Sorry, i don’t understand what you mean by fixing the sidebar. Which one? – detached, main, secondary, right hand sidebar etc? And in which layout?

Thanks

in any layout. If I wanted to “Fix” the sidebar as in when I scroll down the page the sidebar would move along as the page scrolls down. Sidebar -> SideMenu

Hi

Well there are different ways and different sidebars in different layouts, almost all of them are working differently :) For example, in 3/4/5 layouts there’s no detached sidebars and you need to apply affix component to main sidebars, in 1/2 layouts you can apply affix to detached sidebars only.

Here is a code example for main sidebar – includes JS tweaks to remove affix component on mobile and attach it again on desktop.

And this one is for detached sidebar.

Both don’t have custom scrollbar and using native one.

Thanks

Hi I am trying to add Data tables in my custom HTML layout. But I can’t find “Filter” portion of the table which is working fine in the original template. But when I copy paste the table layout code in my custom HTML page it doesn’t load. Can you please help me understand what’s the problem here?

Thanks

Sure. I’ll ask my developer to send you the email right now.

Hi, an email has been sent to you. Please verify. Thanks

Just replied back

Hi,

I used the fixed header option for some of my data tables. I have some problems to make it work, due to js conflicts. I mainly use the fancybox, form, select, some table js and I will have to work it out to find out what conflicts with what.

Apart of this I would like to ask you.

1) In your demo datatable_extension_fixed_header.html : How can I stop the pagination, filter and sort column options?

2) Is possible to have column order in tables for specified columns only? For example, I have a table with products and prices. Two columns for product id and description, and 10 columns with different prices. Is it possible to have the sort feature on product id and description columns only?

Thank you

Hey

There shouldn’t be any JS conflicts if you loaded your files correctly. I need to see your page online and check JS files you are using.

1. Easily, apply these options to your DT:

ordering: false,      // disables ordering
paging: false,        // disables pagination
searching: false    // disables filtering

2. You can use 1 of 2 available optionscolumnDefs or columns

Thanks

Thank you for your reply

The site is in production phase, so there is no access to it.

Regarding the conflicts I mentioned, in your demo page datatable_extension_fixed_header.html you load

js/plugins/tables/datatables/datatables.min.js

js/plugins/tables/datatables/extensions/fixed_header.min.js

js/pages/datatables_extension_fixed_header.js

In my site I load

js/plugins/media/fancybox.min.js

js/pages/gallery.js

js/plugins/forms/selects/select2.min.js

js/plugins/forms/styling/uniform.min.js

js/plugins/tables/footable/footable.min.js

js/core/app.js

js/pages/table_responsive.js

js/pages/form_layouts.js

js/pages/form_select2.js

When I include the js associated with the fixed header (as in your demo) I get an error in firefox debug console

ReferenceError: Switchery is not defined – in datatables_extension_fixed_header.js line 65 (var toggleTypeInit = new Switchery(toggleType, { secondaryColor: ’#FF7043’}); )

Any idea?

I had similar problems with the form_select2.js and I commented out the “Add jQuery UI Sortable support” section – line 160 to make it work.

Regards

Hi

Please do not include any JS files from /assets/js/pages/ folder, as explained in documentation they are for demo purposes only and include a lot of different examples of multiple plugins.

In your case, you just need a single example of plugin config from those files: gallery.js, table_responsive.js, form_layouts.js, form_select2.js. Just open each and copy desired config and paste it to some JS file or inline, depending on your needs.

For example, datatables_extension_fixed_header.js includes Switchery plugin (third example) to add/remove offset. This means – datatables_extension_fixed_header.js file includes switchery config, which you don’t have included on your page.

So i’d suggest to create new custom.js file, add a path to it after app.js and place all custom JS code in there, this will help you to organize your JS code more efficiently.

Let me know if you need any further help.

Thanks

Can I fix menu on top in mobile version?

Hi

Just replied to your email. Thanks

Hi there,

I don’t seem to be able to compile my less now since 1.4. I try compiling from the main_full or main_starter folders but all I get are a number of undefined paths such as “variable @bootstrap-limitless-path is undefined in less\_main_full\core.less” for example. It seems to be ignoring the import globals.less file that are in the less files. I have used both WinLess and Koala to try this.

If I copy the globals.less into the main_full/bootstrap.less for example, it works

Paul

Hey!

Yes, this is my mistake – i’ve included less files that i’m using for live preview, they are containing less variables which are not supported by desktop apps, however work great with gulp.

I’m zipping a new package with correct files now and will reupload within next hour.

Meanwhile you can use global.less and those 4 main LESS files from old /main/ folder, they are identical.

Sorry for inconvenience.

Thanks

No problems at all, thank you for your quick response

Paul

Always welcome! New package should be available for download now

Sorry, just have to say i am very disappointed to read a few more weeks for the new templates, which can turn into months. I think this has been more than 4 months since the previous update (not counting this core file update a few days ago). Not sure why you need to release so much at once and it’s frustrating to those using this.

.rar file is corrupted. and it cannot be fully extracted. This is the message i get. “themeforest-13080328-limitless-responsive-web-application-kit.zip: The archive is corrupt”

Hi

Please try to unpack with 3rd party tool – 7zip, winzip or any other app. Package itself can’t be corrupted, before approving any update, Envato staff reviews all packages and approves or rejects it. Also i just downloaded current package and unpacked without any errors.

Let me know please if 3rd party app worked out.

Thanks

Hi,

I Tried it using Winzip. I have re downloaded the package and the error comes again!

Hi

7zip should solve this problem. Or you can email me to e.kopyov[at]gmail.com, i’ll split the package into 5 archives (1 per layout) and send them over to you.

Thanks

Is there a project template to start using asp mvc with limitless?

Hi

Unfortunately no, it’s a static HTML template. I want to add React.js, asp, Angular and Meteor versions in one of upcoming updates. But no ETA at the moment.

Sorry about that

Thanks

Dear Author,

We have purchased this theme recently and applied to our web application.

We are experiencing the performance issue for this theme.

Strange is sometimes the performance is super fast and sometimes it keeps on loading the page irritating the user.

We have also confirmed that this issue is not from the server on which our web application is hosted. Because we have other application running on the same server and it is running smoothly.

We feel that there is some third party script while is getting loaded in theme. This third party script is responding slowly sometimes and hence the theme.

Please have remote login session with us.

We are receiving lot of complaints

Hi

That’s very strange, the only component which is loading from third party website is Google Fonts. All other components are stored locally.

Limitless is a static HTML template, it doesn’t have any server side components or integrations. So this issue is definitely not related to static HTML code, but it totally depends on your application code.

You can email me directly to e.kopyov[at]gmail.com, i can check what could be wrong with your assets.

Thanks

I have sent from directly on e.kopyov[at]gmail.com.

You will receive email from hitesh.bhutada@gmail.com.

Thanks for your cooperation.

Just replied back

Please do not share on the support website these web addresses: http://sign.ro/plr/_working.php http://sign.ro/plr/_not_working.php

The only difference between the two pages is that in the second one I removed the first checkbox.

And another topic: if you are still on these pages, please check why the position of the Messages pop-up panel is left align instead of being right aligned to the button in the toolbar (on the right side). Thank you :)

Hi

1. Please refer to documentation for more info. As i already mentioned, if you open any JS file from assets/js/pages/, you’ll see well commented examples with different configs. If you, let’s say, want to use Select2 plugin with search, you simply need 1 single example from form_select2.js file:

// Select with search
$('.select-search').select2();

2. You can check browser console, i use Console in Chrome Dev tools

3. I have never tested less2css, but as far as i know it’s pretty buggy. I will push a small update today – i’ve included wrong main less files with variables, that are used for live preview. Those variables work only with gulp, desktop apps are not supporting them. Perhaps this will resolve your issue. That update will be uploaded later today.

Thanks

Thank you :)

Always welcome :)

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