Discussion on Limitless - Responsive Web Application Kit

Discussion on Limitless - Responsive Web Application Kit

By
Cart 13,853 sales
Well Documented

Kopyov supports this item

Supported

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

2227 comments found.

how to wrap div en body tag? need wrap div for vuejs. I add and I generate a blank space at the end. thx

Just wrap body content in div and add class=”d-flex flex-column flex-1” to it.

Thanks

very thanks

Hi Eugene,

Sorry to trouble you, I have just sent you an email regarding a query we have regarding the combination of various features in a table and its just not happening as we get various conflicts. Perhaps you can cast your eye and let us know if its doable.

as always thank you for your help and attentiveness. Thank you

Hey hey

I have just replied back, please check

as always great advice and prompt. thank you very much

You are always welcome ;)

Hey Eugene, Is there a way to have the sidebar in layout 1 to always be minimized on ipad/smaller screens? Another question, what is the best way to hide a div or card on smaller devices?

Thanks,

Hey Steve,

1. Unfortunately no, mini sidebar works only on desktop browsers, on mobile it has 100% width like a normal one. There are a few reasons for this, main one is that hover state isn’t supported in mobile browsers, solution would be to replace hover with click for submenus and it’s quite tricky.

2. You can use a mix of responsive display utility classes, something like class=”d-block d-sm-none”, where .d-block works all the time and .d-sm-none overrides default behaviour and hides element on desktops and tablets. If you want to hide on mobile and show on desktop, logic is the same, but swap class names: class=”d-none d-sm-block”

Thanks

Hello !

I want to make datatable scroll horizontal disabled instead of scroll. I want to make the columns dynamically without collapsed it. or maybe the data is wrapped.

how can i make that?

FYI

I want to make datatable side-by-side both of em using datatables.

Hello

I am sorry, but i don’t understand what you are saying. If that’s related to removing (not disabling) horizontal scrollbar from the table, change “dom” configuration option from this:

dom: '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>'

to this:

dom: '<"datatable-header"fl><""t><"datatable-footer"ip>'

This will remove the scrollbar and disable table responsiveness.

Thanks

Возможно вы не видели предыдущий комментарий. Посмотрите form_inputs_basic.html. При использовании копии этой страницы в aspx нет отступа между input по вертикали. И это наблюдается при всех аналогичных применениях input. Обхожу этот дефект путем использования class=”form-group” в качестве обертки строки

Кстати, в 4 версии .form-horizontal не используется, вместо этого используется связка классов .form-group.row

Насчет 3 версии, есть вариант обойтись без добавления класса в саму форму, используя обертку:

<form action="*">
    <div class="form-horizontal">
        ...
    </div>
</form>

Правда не уверен сможет ли это упростить что-нибудь.

Я не буду ничего говорить про aspx, так как у меня нет опыта работы в этом, но я впервые вижу такую проблему, особенно если учитывать что это базовая логика работы HTML/CSS. Но как показывает практика везде есть свой геморрой.

Именно так, приходится следовать. Если бы тулкит был бы полностью написан с нуля без использования бутстрапа, я бы многие вещи сделал по-другому. Но пока вынужден следовать требованиям рынка…

form action=”” etc согласен. Проблема в том, что предыдущий html – элемент – form acition=”” будут восприняты как ошибка и aspx предложит его выбросить, так как в еще пустом темплейте aspx form уже имеется, а total количество их не может быть больше 1.

по идее 4 версия не должна обрушивать приложения, реализованные нак предыдущей 3.7 версии. К сожалению, это не так.

Сравните с фреймворками и языковыми средствами к примеру Майкрософт – все что было реализовано 15 лет назад будет работать с сегодняшними библиотеками и и сегодня. То же касается к примеру бейсика, то что было реализовано 40 лет назад будет работать и сегодня, но с новыми версиями. Аналогично обстоят дела в Матлабе, примеры можно множить.

Hello, I’m about to embark on a new project and planning to use Limitless as a backbone. I have a few questions:

- Has the theme been tested for accessibility under WCAG 2.0 guidelines?

- Is there the possibility to remove jQuery as a dependency and go with pure js?

- Will there be an ability to “upgrade” the theme when new versions come out?

Thanks for an awesome theme

Hello

1. Not really, Bootstrap has basic accessibility, but it’s not included to the template by default

2. No, Bootstrap is jQuery dependent. But JS version is in progress as far as i’m aware

3. Of course, all updates include a list of files that require update. Process is manual, but doable.

Thanks

I tried this theme, then switched to several others and then switched back to limitless. This theme is so perfect! Thank you!

Thank you very much and welcome back! ;)

I have a question : have you planned to create a product page for the ecommerce pages collection? It could be nice to have it because we already have the product list/grid view.

Yes sure, it’s planned for the next release.

Thanks

Major problem detected in the select2 form with material design and dropdown navigation bar.

How to trigger the problem? Easy just go to your
 navigation_horizontal_mega.html and in the Form layouts section -> vertical form -> Subscription plan (select) -> add -> multiple="multiple" 
And it’s gone. First fix is to: .select2-search__field { width: 100% !important; } Problem is when you want to remove a selected option… :cry: Please check this out and help us out :) Thanks

Hi

I wouldn’t say it’s a major problem. This is related to how Select2 calculates search field width, it’s calculated dynamically depending on select width and remaining space: if there’s enough space – width changes, if not enough – wraps on the next line. If you override this in CSS, that will affect functionality since select2 doesn’t know when it needs to add a new line. This is how it works and there’s no a solution for this at the moment, but i’ll keep digging.

Thanks

Actually let me help you with that. But on the other hand I need you to help me adjusting the CSS. This is a Select2 4.0.5 and prev. problem.

Take a look here: https://datatables.net/forums/discussion/comment/140360

Thanks for the link, looks awesome ;)

I’ll try to play with CSS later this week, not sure though if that’s possible, tried before. But i’ll update the library to the latest version and check again.

Thanks!

Hi,

I have trouble using Select2 in Rails 3 since warning like this jQuery.Deferred exception: U is not defined ReferenceError: U is not defined, and I see in select2.min.js there is U in code U.exted object but I don’t understand what object that is. And also try to download select2.js from github for version 4.0.5 but new error come. I’m guessing your select2.min.js is your custom version ?

So can you tell me little clue what U object is that ?

Hi,

Select2 component included in Limitless is not a custom version and is also the latest one. And i cannot reproduce this issue locally, everything works fine in all browsers. I also can see in compressed file that U variable is defined.

Do you get any other errors?

Hello, is it possible to make in layout_4 theme (horizontal menu bar) to have a dropdown-menu that scroll? i have around 40 submenu and it will be a very long way down to scroll entire page… and i don’t want to use mega menu… maybe is it possible? or maybe make the dropdown-menu become 2 or 3 column so user don’t need to scroll entire page just to reach the last submenus?

Hello,

You can try to add .dropdown-scrollable class to dropdown container, this should do the trick.

Thanks

oh okay thank you so much…

Hi Eugene

Are you responding to Support emails – sent a number of them but so far no comment, appreciate you are busy but help on a number issues would be much appreciated

Many thanks

Just replied back

Thank you very much got it – out of interest is there any conventional thought about having scroll bars on Sidebars? objections? or not a problem?

Depends on a use case and layout type – if layout is fixed, sidebar has scrollbar by default. But if no, you need to add that yourself to sidebar.scss since it’s not supported by default.

Thanks

Hi. I updated to Limitless 2, and summernote doesn’t show the icons in the toolbar menu. Any idea?.

Im using summernote.min.js 0.8.10. in Bootstrap 4, Layout 1, LTR, Default.

Well, I fixed. Just modified in components.min.css the path to summernote icons files. In case anyone else have the same issue

Hey

Do not edit CSS files directly, because all your changes will be overridden during update. Instead edit $summernote-font-path variable and re-compile SCSS files.

Thanks

hi i find something weird that when i do this kind of card with form-group inside it then it will not make the card fill the entire page but have a some empty space on the right of the page… please take a look at here https://paste.ee/p/wqKII

Hi

Hmm that’s odd, should work fine. Try to rename “content-warpper” to “content-wrapper”, wrong class name may cause this issue.

Thanks

oh yes thank you, i didn’t notice that i do some typo on the class name…. Lol

No worries, happens sometimes ;)

When do you think you’ll have the dark theme ready?

No ETA sorry. But will be added in the next major update later this year.

Thanks

how to integrate this template with WebPack / Symfony?

Unfortunately there’s no a step-by-step guide, but the logic is the same as for other static code integrations based on HTML. Documentation is for template only, it doesn’t cover integration as it’s always up to developers.

Thanks

Hi

i download a new version, but why icon not show http://prntscr.com/kvce4i

thanks

Assuming it’s Firefox, it has some glitch in rendering icon fonts when opened locally, but works fine on server. It’s a local problem and here is a workaround.

Thanks

Hi,,

thank,, its work now

hello

I am using the form Wizard with validation ,when error happened, it will show like “This field is required.”

but what if i want to change to other word, how can i do? i can not find the place to change it.

thank you

sorry, i found it, thank you very much

No worries, glad you found a solution :) Thanks!

hello, may i ask you how to mix with HTML5 buttons and fixed colume in DataTable extensions? thank you

Hello

You can simply combine HTML5 buttons and Fixed Column initialization code in 1 table configuration, something like:

$('.datatable-button-init-basic').DataTable({
    dom: '<"datatable-header"fBl><"datatable-scroll-wrap"t><"datatable-footer"ip>',
    buttons: {
        dom: {
            button: {
                className: 'btn btn-light'
            }
        },
        buttons: [
            'copyHtml5',
            'excelHtml5',
            'csvHtml5',
            'pdfHtml5'
        ]
    },
    scrollX: true,
    scrollY: '350px',
    scrollCollapse: true,
    fixedColumns: true,
    ...
});

Thanks

hii, can i ask you ? why your template dont have carousel ?

Hi

It supports default bootstrap style, i didn’t add a custom one yet. Planned for upcoming releases.

Thanks

Do you have a login page for this theme? My system has a sales POS, does it support?

Of course, there are 12 pages for different authentication layouts – password reset, login, registration etc. You can find them in Service Pages/Authentication/ section.

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