2227 comments found.
Hello! I have purchased limitless 3 days ago and I haven’t been able to download it. I have been doing severals attempts and each one says “Network error” after downloading some % of the package, I have tried this under distnict connection so it is not a problem of my internet connection
Hello
All templates and themes on Envato market are stored on Envato servers, authors don’t have any access to them. I would suggest you to try different browsers and if the issue still remains, send me an email to e.kopyov[at]gmail.com and i’ll try to share it with you somehow.
Thanks
Hi there.
How would you go about making a page full width with no left/right margins? How important is the page-container class? Can I just remove it or is there an alternative class to use?
Thanks
Hey
Depending on the layout, you can override CSS or LESS styles for main containers, but main containers and class names are required – some functions rely on specific class names.
Thanks
Hi Kopyov…. So I see in the demo that a statistics widget is being added to 1.6, pretty excited about that. Can you tell me a little a bit about this? Will there be many styles to choose from? Can’t wait for 1.6!
Hey
Statistics widgets will include small blocks with different kind of stats, counters, small charts (donuts, sparklines etc), progress bars, indicators etc. And yes, plenty of styles – background color options, chart types etc. I am wrapping up small charts at the moment, had a few issues with them that delayed the release.
Thanks
Hi. In Anytime pickers in Date range picker the 1st day of week is showing “Sunday”. How do I change it to be on “Monday”?
Hi
You just need to set firstDOW option to 1 in picker configuration:
// Sunday (default) firstDOW: 0 // Monday firstDOW: 1
Thanks
It is already set to in picker_date.js:
$(”#anytime-date”).AnyTime_picker({ format: “%W, %M %D in the Year %z %E”, firstDOW: 1 });
Am I doing something wrong?
nevemind…i got it…thanky you 
always welcome 
Hello,
How can we reload a date in pickadate-tranlated? The value is not loaded in the hiddent input. The user can see the date but when the form is sublitted, the data are formatted and saved in a different form.
By exemple when i click on the input i load the date 20 février, 2017, if i save without changing the value the date is set to the date ex 2017-04-10. How can we load the data in this field, although the hidden input is created automaticcaly.
Thank you
hi,
i use your validator in form_validation.html and in form_inputs_basic.html for the date’s one,
i ask you if is possible to use the control with the “id” or the class.
tnks
Hi
I am not sure i understood what you what to achieve. You mean to initialize validation on element with id/class instead of required attribute?
Thanks
ok no problem i have solved my problem alone
Hey, I have a little problem with datatables and the table element ‘label with dropdown’. If I use this element in a datatable, the dropdown is shown via a scrollbar. Is there any way to prevent this? Thanks in advance.
Hey
You need to edit ‘dom’ option in datatables config. Just change this:
dom: '<"datatable-header"fl><"datatable-scroll-wrap"t><"datatable-footer"ip>'
to this
dom: '<"datatable-header"fl><""t><"datatable-footer"ip>',
That will remove .datatable-scroll-wrap class from table container, which adds scrollbar to the table.
Thanks
Thanks, worked like a charm.
dashboard.js:77 Uncaught TypeError: Cannot read property ‘getBoundingClientRect’ of null at trafficSources (dashboard.js:77) at HTMLDocument.<anonymous> (dashboard.js:65) at j (jquery.min.js:2) at Object.fireWith [as resolveWith] (jquery.min.js:2) at Function.ready (jquery.min.js:2) at HTMLDocument.I (jquery.min.js:2) trafficSources @ dashboard.js:77 (anonymous) @ dashboard.js:65 j @ jquery.min.js:2 fireWith @ jquery.min.js:2 ready @ jquery.min.js:2 I @ jquery.min.js:2
can you please check this error
Hi
That error popped up because you didn’t remove JS configuration of the chart that you don’t use on your page – dashboard.js file is for demo purpose only, it contains a lot of JS code related to charts configs. So if you remove chart container in your markup, you also need to remove related JS code.
Thanks
Hi,
I an using the form_select2.html and from that i am using <select class=”select-multiple-tags” multiple=”multiple”> which also uses select2.min.js. Then I am appending an email array into <option> and then i am calling that in html code. Now if i try to add emails they get added one after another, is there a way or could i change something in select2.min.js so that if i add new emails they got appended onto the same value tag.
Thankyou!
Hello, Eugene! I hope now we will be friends=)
Hello, Eugene, could you please tell me,where can I see code examples for datatables, also i want to know if i can make them editable?
Hey
Sure we will 
Datatables code examples you can find in assets/js/pages/ folder, all files starting with “datatables” label.
Also you can find more examples on official datatables website – https://datatables.net/examples/index , all examples also have HTML/JS code right below the tables.
Thanks
hi Kopyov,
i notice that when i have only 2 row in a Basic datatable and i reduce the window, the actions are cutted and i can’t select as you can see in this immage: https://postimg.org/image/5hgvywb9v/
please help me with this bug
thanks,
Rdcrob.
Hey
You need to edit ‘dom’ option in datatables config. Just change this:
dom: '<"datatable-header"fl><"datatable-scroll-wrap"t><"datatable-footer"ip>'
to this
dom: '<"datatable-header"fl><""t><"datatable-footer"ip>',
That will remove .datatable-scroll-wrap class from table container, which adds scrollbar to the table.
Thanks
hello, i have a qustion. can we speak on skype to answer the questions? thank you
Hello
I don’t use skype, if you want you can contact me via email e.kopyov[at]gmail.com
Thanks
Hello, I am really interested in use your Limit less theme. However my website use Bootstrap 4 and I have seen that your theme ic ompatible for Bootstrap 3.X
I was wondering if you are going to upgrade your theme to v4 soon ?
Thank you,
Hello
Of course, i am waiting for the first Beta to start working on development. Alpha versions had quite a lot of changes in markup and styling, so it was pretty useless to integrate them.
Once done, it will be released as a free addition to Limitless and will be available for download for existing users.
Thanks
Hi, little problem with jQuery UI Interactions.
http://demo.interface.club/limitless/layout_2/LTR/default/jqueryui_interactions.html1. If the width of the screen (responsive) is 768px and smaller the circles ‘DRAG’ can’t move to the right or the left. Tests with chrome developer tools. An issue to enlarge the area?
2. How to make the ‘Drag&Drop’ zone “no responsive” for save and replace position of the elements
Thanks a lot
Hi
Those draggable circles are for demo purposes only, not sure why you need them in development
There is a small bit of LESS responsible for responsiveness:
@media (min-width: 769px) {
.jqueryui-demo-element {
display: inline-block;
}
}
So you can either move jqueryui-demo-element {} outside @media or remove it completely if you want to show them stacked.
Anyway, confirming the issue – need a bit more time for investigation, looks like draggable widget bug. Need to test CSS first and then walk through jQuery UI docs.
Thanks
Ok, found possible reason – auto margin, should be changed to display: inline-block; and text-align: center; instead of block elements with auto margin. Will test it again tomorrow and if all good, will add a quick fix to the upcoming update. Thanks for reporting!
how can i populate data to make a responsive data table from json. Not only that but I wanted to know how can I make drop drop down list to populate charts dynamically or making pivot chart in limitless.
You can find an example on this page. Also Limitless demo has a configuration with ajax source – here is the same example.
Thanks
How can i populate charts(such as:line chart,bar chart,pie chart) directly from Json data in limitless
Which charting library are you using? As far as i know only D3.js and Google Charts support JSON data.
Is there a way to disable certain elements on the printing page or a way that you can just print the content of a panel?
Hi,
I bought this theme a while ago, but didn’t get a chance to use it till now. Great work just wanted to say.
Would you mind sharing how I can change the default underline color of form fields? If i enter data in an <input /> field it shows a greenish underline under the field. I want to by default have it be a different color.
Hey
That’s easy – open variables-custom.less (assets/less/core/variables/), find variable @input-border-highlight-color and change default value to whatever you like (default one is @color-teal-500) and re-compile your LESS files.
Let me know if you need any further help.
Thanks
You can show the controls in the header of the panels, in the mobiles is hidden but I do not want that to happen, I just want to show the collapse icon
Hi
Simply add .not-collapsible class to .heading-elements container:
<div class="heading-elements not-collapsible" ...=""> Thanks</div>