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.

Hai, i have integrated HTML 5 buttons, when i export the PDF all the columns correctly except the dropdown inside the table,In PDF dropdown value doesnt show correctly instead it shows the code of dropdown.. can u pls suggest me the solution for this

Hi

It’s kind of a custom functionality, you can output data formatting to grab button text and display it in table cell.

Here you can use :visible option and DT will export only visible columns.

Please don’t forget to check Datatables documentation.

Thanks

Always welcome :)

Hi, I use limitless 1.2 version. I want to upgrade to the 1.4. But I don’t know how to do this. On comments, you are talking about migration guide. But I couldn’t find.

Please help me. Thanks, Mete Han

Hello

There is no a detailed instructions, but there is a list of files that were changed, so basically you just need to update those files and you are ready to go :) You can find them in documentation – changelog page.

Thanks

Good day! How to make inline inputs ?

Hello

You can use inline forms layout or bootstrap grid with inputs inside columns.

Thanks

Hi – how do I add buttons and text input boxes in the Support chat?

Hi

Not sure i understand what you mean – to add button and text input to the chat of message? If chat, there is a sample in chat layouts. If message, this is not supported at the moment.

Thanks

Hi Kopyov! I went through the plugins available and couldn’t find a rating plugin (the kind of plugins which translate a mark to stars). Is there such a plugin in the template ? Otherwise I think it may be woth including this kind of tool in the next release. Thanks and mery christmas !

Hey there

Unfortunately no, i didn’t add rating plugin since it’s pretty rare. You can easily add it yourself, i’d recommend this plugin, it has a solid range of options.

Thanks!

ckeditor does not show in codeigniter project

Hi, check this solution. Thanks

Я по ошибке шаблон дважды. Отмените пожалуйста одну покупку.

Подтвердил возврат, через несколько дней должны вернуться. Спасибо

Hi Eugene.

Great work with the template. I noticed that there is no e-mail functionality though. Is that something for future versions or not being considered at all.

Thanks, Maranatha

Hey Maranatha

Yes, it is ready and will be included in upcoming update. Inbox layouts, not email templates.

Thanks

Hi, any ETA for the next update? Voja

Hi

Wrapping up things, preparing a gift for a new year, so should be available very shortly :)

Thanks

Hi Eugene,

Could you please help us with the navbars. we are using Layout 4 and we want to have our application navigation on top so we have a Main Navbar and Second Navbar both on top we would like to get both Navbars fixed on the top.

Thanks :)

Hey

It’s pretty easy to do – you just need to wrap both navbars in 1 div with .navbar-fixed-top class:

<div class="navbar-fixed-top">
    <!-- First navbar -->
    <div class="navbar navbar-inverse" id="main">...</div>

    <!-- Second navbar -->
    <div class="navbar navbar-default" id="alt">...</div>
</div>

and add class=”navbar-top-md-md” to body tag if both navbars have default height. If different, change first and last “-md” to another size (*-xs, *-sm, *-lg).

Thanks

Hello! Any chance to have the template updated to BS4 in the future?

Hello

Of course, it will be added as a separate project when BS4 will be more stable, it’s still in Alpha version. There is no point to publish it right now, since dev team is still working on it and there’s still a lot of things to do.

Thanks

Hello,

how can i set the “checked”-value with JavaScript on toggle-fields?

<input id=”taskswithme” type=”checkbox” class=”switch-mode”>

Regards Ronny

Hello

What checkbox are you using – switch, switchery of simple styled checkbox?

Try this:

$('.switch-mode').prop('checked', true); // checked
$('.switch-mode').prop('checked', false); // unchecked

Thanks

Hi, I am using your product

Limitless – Responsive Web Application Kit

I want change in Sales statistics line graph on Dashboard Page In this module using app_sales.csv file to draw graph, but I want to create cvs format data on code like this

var da=’type,date,Alpha,Delta,Sigma\n’; da+=’val1,2015/06/15,110,30,190\n’; da+=’val1,2015/06/16,90,48,170\n’; da+=’val1,2015/06/17,115,25,210\n’; da+=’val2,2015/06/15,12,22,43\n’; da+=’val2,2015/06/16,21,31,58\n’; da+=’val2,2015/06/17,27,4,36\n’; da+=’val3,2015/06/15,110,70,80\n’; da+=’val3,2015/06/16,95,65,90\n’; da+=’val3,2015/06/17,102,85,75’; d3.csv(da, function(error, data) { formatted = data; redraw(); });

but this is not supporting and getting this type of error

TypeError: d3Container.node(...) is null

Please tell me any solution for this ,Any help would be appreciated.

Thanks

Hi

I am not sure if that’s possible. As stated in D3.js docs, CSV parser requires .csv file url and comma/tab separated values, here is a reference. Also please check maps, might be useful.

Hope that helps

Thanks

Hi, interested in your product but I am afraid of the weight to load in browser. Is there a way to selectively define what feature to load and how easy is it? Thanks!

Hi

Of course, live preview has a lot of components, especially in CSS. You can use Starter kit to define what components you want to use and keep JS/CSS assets as clean as possible.

Thanks!

Hello Eugene. Is there any chance to get an updated script for detached sidebar (positioned at the right side) of the page with layout called “boxed with default sidebar” and fixed header. It turns out that when I scroll down in case of “boxed layout” the sidebar slides to the top-right corner with some margins. Please review the screen capture: https://youtu.be/8hWDyjWX29g

Hi

Yes, that was one of the reasons why Bootstrap team dropped support of this component :)

This is a well known bug, which doesn’t have a workaround yet, except editing core code. However you can try to add some jquery magic which will add or remove certain classes from sidebar depending on top offset. But i am not 100% it will work out since i didn’t test it.

Thanks

thanks for your explanation.

always welcome. Let me know if you have any other questions.

Thanks

Hai, i have used handsontable in my appln but i am not getting the table itself i have mailed the snapshot please verify.

got the solution! thanks

Hai, iam trying to integrate the handsonatable feature in table with dropdown which has multiple columns to be shown.for me its not showing properly 1. it get hide with the table 2.then it shows only 1st column in the dropdown i have mailed snapshot and code through mail please verify.

Hey

Replied back, please check

Hi there, I am interested in your great theme, limitless. i need some customisations tho and am wondering what the rates are for this? thank you! paola

Hi

Unfortunately i am not able to provide customization at the moment, fully booked until end of February.

Thanks

Hello,

If you use a fixed navbar-top with sidebar-detached affix, the top position of the fixed detached sidebar is wrong. I had to add a custom body class (has-navbar-fixed) with this rule :

@media (min-width: 769px) { .has-navbar-fixed .sidebar-detached.affix { top: @navbar-height+@line-height-computed; } }

Very good job, I am impressed by the whole kit !

Good luck

Hello

There is a set of classes which are responsible for extra top spacing if both navbar and sidebar are fixed, depending on navbar height: .navbar-fixed, .navbar-fixed-lg, .navbar-fixed-sm, .navbar-fixed-xs. You can find them in sidebar.less file (line 896) ;)

Thanks

Hi Eugene, just thought you might want to know that on your datatables fixed header example, if you toggle to mini sidebar and then scroll down, the header row does not adjust to the table. It stays where it was before you minimize the sidebar. Looks like header needs to be destroyed and recreated on sidebar toggle. Thanks

Hey

Thanks for the info, will add a fix in upcoming update. Basically need to add fixedHeader.adjust() to .sidebar-control button click.

Thanks!

Perfect, thanks.

hi, I am working with the Limitless theme and I have one issue I was hoping you could solve for me. I am working with the default modal with onShow callback – I want to be able to load the same dialog multiple times and run the onshow callback to load different properties when the dialog shows. However I’ve found that with the default callback code, the callback gets executed as many times as the dialog has been opened. For example, if you open the dialog once, the callback fires once. if you open it a second time, the callback fires twice when you re-open. Then if you open the dialog again the callback fires THREE times. Could you please have a look at this, or let me know how to remove the previous callback instances? It should fire just once each time the dialog opens. Thank you very much in advance – Hugh

ok I kinda figured out how to solve this issue by not nesting the callback code as you’ve done in your demo.

Hi

Ha, thanks for pointing out this bug! Will test and add a fix in upcoming update ;)

Thanks!

my pleasure ;)

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