2227 comments found.
Hi,
Is it possible to make the header sticky?
Thanks. Great work.
Hi,
It is possible only in 5th layout for now, i am planning to add this feature for the rest of layouts in upcoming updates, i need to find a proper way to calculate left margin and header width.
Thanks
I want to translate it to Thailand to do.
Hi Eugene. Any plans on adding widgets? Thanks!
Hey there,
Of course, first set will be added in upcoming update, second in the next one 
Thanks
Great. I look forward to it.
I´m trying to use these scripts in iExplorer version 11.0.9600.17416 and some of the features are not working (menus, filters, pagination, etc.). Is there any way to make them work?
Hi,
All layouts were tested in IE9+ and no issues found. Do you experience those issues on http://demo.interface.club as well or only in your application?
Thanks
If I want to have a form with a button group initially load with a default option, how do I get the button to look like it is already selected?
In the code example below, you can see that I have the attribute of “checked” for the first radio button. But the button still looks the usual btn-primary blue. I know that behind the scenes, the button is selected though.
<div class="form-group">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="quarter" id="Q1" value="Q1" checked>Q1
</label>
<label class="btn btn-primary">
<input type="radio" name="quarter" id="Q2" value="Q2">Q2
</label>
<label class="btn btn-primary">
<input type="radio" name="quarter" id="Q3" value="Q3">Q3
</label>
<label class="btn btn-primary">
<input type="radio" name="quarter" id="Q4" value="Q4">Q4
</label>
</div>
</div>
Hey,
You just need to add active class to your button:
<label class="btn btn-primary active">
<input type="radio" name="quarter" id="Q1" value="Q1" checked>Q1
</label>
Thanks
Thank you!
hey will next update ‘ll contain elearning example page? et mail app? Thanks
Hey
Yes, mail app will be included, but forgot about e-learning set, will add it as well 
Thanks
in next update? thank you : need it !
Yep, don’t expect it to be a fully working app, but i will do my best to include as many components as possible.
Thanks
thanks !
Hi, is there any option in the default layout, that I can make the sidebar and navbar fixed? Search it and didn’t find it…
Thank you, one of the best (if not the best) admin template ever!!
Please keep the great work 
Oh, thanky you!! Totally missed “Page layouts” menu entry.. 
No worries, let me know if you have any other questions 
Thanks
hey THANKS for such a support ! would you give us a date for next update? Thanks for your good work.
Hey,
Still working on it, going through all plugins and updating to the latest versions. Can’t tell you the date at the moment, because i really don’t know how long will it take to wrap things up. Hopefully early July, but i am not 100% sure. Will make an announcement here in comments when things are more clear.
Thanks!
Hi,
I am facing a problem with anytime picker, the position of the picker doesn’t adjust according to position, it doesn’t adjust to the position of the input field.
If you have any knowledge to help me in this regard, it would be great.
Thanks.
Hi,
Strange behavior, can you please share a screenshot or send me a link to your page if it’s online to e.kopyov[at]gmail.com? I’ll take a quick look.
Thanks
Hello i show data table in mysql
i use table class datatable-reorder
i want to show last data
” ORDER BY DESC”
How to confix
sorry i’m not good english
Hi,
You can change default ordering direction sequence for columns using aoColumns and orderSequence options:
aoColumns: [
null,
null,
{ "orderSequence": [ "asc" ] },
{ "orderSequence": [ "desc", "asc", "asc" ] },
{ "orderSequence": [ "desc" ] },
null
]
Thanks
cheange file ??
In the file where you store your datatable configuration. Unfortunately i can’t suggest you more as i don’t know your files structure.
Thanks
Hi there. Since I am absolutely terrible with D3, would you tell me how (or give me an example) of how to modify the daily sales stats heat map on the dashboard home page to only show days, not hours? I know that D3 is not plug and play so customizing is difficult for me. Thanks so much.
Hey,
Although D3.js charts need a custom configuration for every specific requirement and data set, that one you need is pretty easy to change.
1. First of all, you need a correct date format in data set in CSV file. Current one is:
app,date,value Alpha app,2015/06/24 00:00,24 Alpha app,2015/06/24 00:01,10 ...
—> Name/date/hours/values. So date/time format has 1 specific day and 24 hours. You need to change it to something like
app,date,value Alpha app,2015/06/01,24 Alpha app,2015/06/02,10 ...
2. After that all you need to do is to change date format for parsing and displaying in tooltip. In chart config you need to replace this:
// Format date
var format = d3.time.format("%Y/%m/%d %H:%M"),
formatTime = d3.time.format("%H %M");
with this:
// Format date
var format = d3.time.format("%Y/%m/%d"),
formatTime = d3.time.format("%b, %d"); // change to any desired format
Here is a full list of available formats.
formatTime is a format which is displayed in a tooltip on top right of each row.
3. The last thing you need to change is horizontal domains for scaling. Find this row:
// Horizontal x.domain([new Date(data[0].date), d3.time.hour.offset(new Date(data[data.length - 1].date), 1)]);
and replace it with:
// Horizontal x.domain([new Date(data[0].date), d3.time.day.offset(new Date(data[data.length - 1].date), 1)]);
Basically here you are saying that d3.js should display days instead of hours, here is a complete documentation.
That should be it. There might be a few more minor changes, but i don’t know your exact specifications so i can’t suggest you more stuff.
Let me know please if that worked out.
Thanks
Thanks so much for your reply. I have made the changes you instructed, but now only the first square of each app is being displayed on the heatmap. The legend is still there.
Hi,
Hm, that’s strange, should work this way, I got it working on test environment in the morning. If you made custom changes, could you please email me your code to e.kopyov[at]gmail.com? If not, I’ll make a quick draft for you.
Thanks
Thanks, a draft would be great. I did not make any custom changes. Just wanted to show dates without time.
Ok got it, it’s 11pm here, will be with you early in the morning.
Thanks
Thanks. just checking in to see if it is ready for me.
Hey,
Ouch, very sorry!! Please send me an email to e.kopyov[at]gmail.com, i’ll send over instructions.
Thanks
Email sent. Thanks so much for the great service.
Replied back
Hi Eugene,
I would like first one to thanks you for this awesome work ! Next, when do you plan to release a new updates ? I Would love to see if you will add some “ecommerce” features ? Like “cart”, “summary” mini things like that ?
Do you have a roadmap for the next release ? 
Thanks again,
Hey,
Working hard on a new version, currently doing a checkout process
New version will be out soon, still need to create a few pages and wrap up everything. No ETA at the moment, but i’ll let everyone know when i’ll be close to upload.
Thanks!
So nice !!! Can’t wait
Thanks for your hard work ! 
Just thanks for all Eugene.
I have delivered a first web application with limitless theme yesterday, result of seeeeeeveral months of efforts (and many nights lol), and everyone is extremely pleased.
Thanks a lot for your work, speed and clarity of your answers. And sorry for my bad english.
Eric.
Hey Eric,
Thank you so much for kind words, nothing makes me happier than satisfied developers and end users 
Eugene
Hi support, As our team is currently working on this app kit, we have been facing an issue, where we have no ideas why it happens. As far as ‘Appearance-Content Panel’ is concerned, the top right corner icon actions are not working. For example, the ‘downside arrow’ icon allows users to collapse or expand the panel content even through we include all required js files and the console does not show any error messages or exceptions.
Can you please specify this problem and give us some guide how to solve this ? Looking forward to hearing from you.
Regards, Eric Wang
ericw@mobiliseit.comHi,
Hmm, that’s strange. Can i see your code somehow? You can send me a link to your page if it’s online to e.kopyov[at]gmail.com or send me please your markup for panel and head section where you load JS files.
Meanwhile, please check if your markup is correct for those control buttons:
<div class="panel panel-flat">
<div class="panel-heading">
<h6 class="panel-title">Title</h6>
<div class="heading-elements">
<ul class="icons-list">
<li><a data-action="collapse"></a></li>
<li><a data-action="reload"></a></li>
<li><a data-action="close"></a></li>
</ul>
</div>
</div>
<div class="panel-body">
Panel content
</div>
</div>
Thanks
Hello,
Thanks for this great theme. Very impressive,
I have facing an issue with showing responsive data table within a modal. Responsive data table is working fine on page but when I am showing it within a modal its not showing as responsive, instead, it has horizontal scrollbar. Is it possible to show responsive data table within a modal or not? Please help me in this regard.
Thank you.
Hey,
Yes, it is possible, you just need to recalculate datatables width when modal is shown. Also try to initialize Datatables in onShown modal event:
$('#modal').on('shown.bs.modal', function() {
var dataTable= $('#table').DataTable({
// options
});
// Recalculate the dimensions
dataTable.columns.adjust().responsive.recalc();
});
Thanks!
Thanks so much. You saved my day. I have one more question, I am using modal_large and modal_full but they are responsive on smaller screens. What should I do to make it responsive?
Hi,
Sorry didn’t get your question – you want to remove responsiveness or make them responsive?
All modals are responsive by default.
Thanks
I am sorry to confuse you. Modals are NOT showing as responsive in iphone 6 and iphone 5. I want to make them responsive.
Hi,
Strange, I’ve just checked both full size and large modals on iPhone 6 – both are responsive and have 90% width.
Could you please send me a link to your page to e.kopyov[at]gmail.com, I’ll take a quick look?
Thanks
We are looking to purchase this template. We had questions regarding the template. Are controllers and services separated?
Hi,
Limitless is a static HTML template, it doesn’t have any server side integrations at the moment. Angular version will be available later this summer.
Thanks
Can i know the percentage formula your using to calculate in charts..
Sorry, could you please be more specific? To calculate what and in what charts?
Thanks
Hi,
I am using Basic donut chart and few other charts and in that we are using percentage values so i want to know how we are calculating percentage values mean what will be the formula because we we are calculating values showing wrong percentage
echarts_pies_donuts.html are the charts i am using
Hi,
This is a built-in functionality, by default you can just change variables responsible for different content inside tooltip (check “content formatter” section below table).
You can also use your custom formatter, in this case you need to use a custom function inside formatter parameter:
tooltip: {
...
formatter: function (params,ticket,callback) {
console.log(params);
}
}
Here is an example
Hope that helps.
Thanks
Is there a way to get modals to close by hitting the ESC key? I have a page with 12 different modals, so either I need the ESC to close the current open modal, or to cycle through and try to close all.
I’ve tested both on Firefox & Chrome, it isn’t currently working on either.
Thanks
Hi
It should work by default, just try to add tabindex=”-1” to your modal container:
<div class="modal fade" id="myModal" tabindex="-1" role="dialog"> ... </div>
Let me know please if that worked out for you.
Thanks
This worked, thank you!
Always welcome!
Hi Eugene,
First, thanks for the awesome work.
The cog by the side of the name is not working. Can you help me with a template for its menu?
Thanks.
Hi,
You mean cog icon next to the user name in sidebar? Could you please provide more details on what exactly you want to achieve?
Thanks
Exactly. I was expecting a popup menu to open when I click it.
What did you envision when you put that cog icon there?
This icon is just for demo purposes. Since that user block uses standard media object component, you can use any component from this page – labels, badges, checkboxes, radios, icons, dropdowns etc etc.
So basically your markup should look like this:
<div class="media-right media-middle">
<ul class="icons-list">
<li>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-cog3" />
</a>
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="#">Item</a></li>
<li><a href="#">Item</a></li>
<li><a href="#">Item</a></li>
</ul>
</li>
</ul>
</div>
Thanks
It is an excellent theme, I would like to have a text auto-complete like typeahead.js
Hey,
Limitless includes both typeahead.js and jQuery UI Autocomplete components. You can use those examples as a base for your inputs and/or check documentation for a complete list of options and links to official documentation.
Let me know please if you need any specific help.
Thanks