2227 comments found.
Sir, I have been using bootstrap3, how do I upgrade to latest version without having to change all the html files?
Why is form_editable.html missing in BS4?
Why is datatable_extension_colvis.html not working fine. When more table header is added, the table goes beyond the page?
Class=datatable-scroll-wrap is missing when compared to limitless_1_6
Hi,
SOrry for delay, on holiday.
1. Not possible unfortunately, BS4 is completely different – new class names, new markup, new styling sources, new logic. Here you can find the migration guide.
2. Editable form component is not maintained anymore and not compatible with latest versions of Bootstrap
3. I’m not sure i understand the problem. Do you have a demo?
Thanks
Hi, before buying I would like to ask you. I see that you announced some update. Can I start work on my project from current template ? Is it possible to update smoothly to new one.
Hi,
Yes sure, new update will include some bug fixes, component updates and a dark theme. Will be released very soon, documentation will also include a detailed instructions and a list of files that need to be updated. So nothing major is planned for this release.
Thanks
Incredible theme, so much effect and thought has gone into the development.
One component I couldn’t find was a File Browser visualisation that allowed traversal of a directory structure based on a predefined home folder (determined server side).
Is this in the roadmap?
Many thanks
Hello,
File Browser component is planned for v.3.1 (2 updates from now), but a static version. Basically the design without any backend integration.
Thanks!
how did you make the DOB arrow pointing down 4th column in this link?
Something like this:
$('selector').DataTable({
...
order: [3, "desc"]
});
Hi very good work with the theme. We are facing an issue with the theme faced by one of the users earlier.
http://i.giphy.com/3oGRFoOCJ51vCPNtGU.gifSame issue has been resolved in latest version of your theme but the once which we used is already live in the project and we cannot replace the older theme with the newer one completely.
Can you help us with a solution for the same?
My Version: 1.2
Hey
Sorry for delay, on holiday.
This issue comes from bootstrap library and it still exists, devs promised to fix it in upcoming release, so still waiting. It also affects sticky elements.
Thanks
Hi,
We have checked the latest update but this issue has still yet been fixed.
Hi,
That’s because new version of Bootstrap hasn’t been released yet. If that’s critical for you, you can edit JS core directly, but i’d strongly suggest to wait for a new release.
Thanks
Please let me know the changes to be done to the JS core.
Open bootstrap.bundle.min.js, search for “padding-right” and change the code accordingly. Again, i recommend not to edit core JS code and wait for official fix.
Hi, is it the profile picture on the sidebar can be replaced with something? or do you have alternative beside the one which in material of course? I just don’t want to show 2 picture on the top and the sidebar. thanks.
Hey,
Of course, that’s just an example. You can remove it or replace with your custom content, it’s up to you. In some cases it might require some styling adjustments, but again it depends on the content you want to show there.
Thanks
How to implement ‘asc’ and ‘desc’ in the column ordering datatable?
You can use data attributes (data-order=’[[ 1, “asc” ]]’) or JS solution:
$('#example').dataTable( {
"order": [[ 0, 'asc' ], [ 1, 'asc' ]]
} );
Please refer to Datatables documentation for more information.
Thanks
no luck with that
```
| ``` ``` | Date Out | ``` ```Name | ``` ```Rank | ``` ```Reference Nr | ```
|---|
no luck with that
```<table class="table datatable-responsive-row-control sortdesc">
```<thead>```
```<tr>```
```<th />```
```<th>Date Out</th>```
```<th>Name</th>```
```<th>Rank</th>```
```<th>Reference Nr</th>```
$('sortdesc').dataTable( {
"order": [[ 0, 'desc' ]]
} );
the Date Out column is still ASC
That’s because you changed ordering in the first column, which is empty in your case. Change 0 to 1 (number is column’s index).
Trying to work it around but I still can’t get it to work. My skills is definitely rusting.
<table class="table datatable-responsive-row-control sortdesc">
<thead>
<tr>
<th />
<th>Date Out</th>
<th>Name</th>
<th>Rank</th>
<th>Reference Nr</th>
<th>Subject/Purpose</th>
<th>Effective Date</th>
<th>Which Read</th>
<th>To Read</th>
<th>Initials</th>
<th>Justification/Remarks</th>
<th>Scanned Name</th>
<th class="text-center">Actions</th>
</tr>
</thead>
<tbody>
<?php
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "
<tr>
<td />
<td>" . $row["DatOut"] . "</td>
<td>" . $row["psnName"] . "</td>
<td>" . $row["psnRank"] . "</td>
<td>" . $row["RefCG"] . " NR ". $row["RefNr"] ."</td>
<td>" . $row["SubPur"] . "</td>
<td>" . $row["EffDat"] . "</td>
<td>" . $row["WhchRd"] . "</td>
<td>" . $row["ToRd"] . "</td>
<td>" . $row["Ini"] . "</td>
<td>" . $row["JstRem"] . "</td>
<td>" . $row["ScnNme"] . "</td>
<td>
<div class="\"embed-responsive" embed-responsive-16by9="">
<iframe class=\"embed-responsive-item\" src=\"" . $row["ScnFil"] . "\"></iframe>
</div>
</td>
</tr>";
}
} else {
echo "0 results";
}
$conn->close();
?>
</tbody>
</table>
$('sortdesc').dataTable( {
"order": [[ 1, 'desc' ]]
} );
I dont know what’s wrong but when I tried refreshing or everytime I refresh the page
my table is in DESC but after the loading stops it became ASC again
You can also use columnDefs option where you can specify ordering direction for each column.
Please refer to documentation, everything is well explained in there.
Thanks
how to use this data-order=’[[ 1, “asc” ]]’?
is it like this?
<th data-order="[[1,"desc"]]">
Date Out
</th>
<table data-order='[[ 1, "asc" ]]'> ....
Again – please refer to documentation.
can i use this template as front-end(pretty nice css design), are there any restrictions ?
edit: [i found your recent anwer, so i think i can
, then i am buying]
Hey,
Of course you can, if it fits and covers all your needs 
Thanks!
Could you please give some general advice on how to control the components. For example if I wanted to remove the “sort asc/desc” arrow icon/button on a specific column heading in a Datatable with sorting, how would I do that?
Hello,
There’s a set of JS files with demo configurations, you can re-use them in your dev process. It also depends on your specific environment, so there’s no a universal solution for everybody. Answering your question – you need to use columnDefs option where you can turn on/off ordering in specific column, here’s an example:
$('#example').dataTable( {
"columnDefs": [
{ "orderable": false, "targets": 0 }
]
} );
where “target” is a column index (starts from 0).
Hope this helps
Thanks
Yes that helped, thank you.
Is it possible to replicate this behavior of SweetAlert2? https://codepen.io/mornaistar/pen/WqVRYR I would love to have SW2 toasts
In theory yes, but styles have not been implemented yet. Will be available in upcoming update.
Thanks
any ETA on the new upcoming update? thanks a lot! really miss this from SW2
Few weeks approximately 
Can i use this admin template for POS System Back-End Dashboard which will be available on the Envato market?
Replied back to your email
Hi, is this theme have dropdown search? like when i type a keyword it will show the result below the input?
is this autocomplete possible to be placed in top bar next to notification or user bar?
Of course, would need some minor adjustments, but it’s definitely possible
do you have a plan to make demo with it? i’m sure it will be great feature. I love your template it so complete especially if you want to add this feature i will definitely consider to use it for most of my clients 
There is a demo of form components in navbar, you just need to add input field to navbar and attach/configure automplete to it
wow that great, i will buy and give it try for my next project. thanks.
Hi. Is possible to increase the font size a little bit more? for some users, the size is too small, and I want to know if there is an easy way to do it without affecting the beauty of this theme. Please let me know.
Hi
Of course, all typography styles can be changed in _variables-core.scss and _variables-custom.scss files. In some cases other adjustments are required, but depends on what text size you want to change.
Thanks
Hello, Good work quick question, can we use your admin template with our WordPress theme as frontend dashboard that will be available on the Envato market ?
Can we use it with regular licence ?
Replied back to your email
Hi. Any news about update footable version 3.1.5 to limitless? We need it please
Hi
Yes, will be available in upcoming update.
Thanks
Thank God!!!
Good day!
Just lately, I found out the the sidebar has a problem. Like, it will be cut in the middle once, a card is opened/collapsed that is more than the loaded height of the sidebar.
Any idea on how to resolve this one, coz it is totally not good to look at. Hoping for your immediate help. Thank you!
Explained in email a few days ago
Yes, thank you! We’ll be waiting for the fix then.
Why is form_editable.html gone?
Because it’s not compatible with latest versions of almost all libraries and it’s not maintained anymore by dev team.
Anyone have idea why the sidebar minimise not working on godaddy server. Do we need to do some setting.
Hello
I just answered your email. In short – links to all assets and libraries throw 404 error. Make sure you have all of them on your server.
Thanks
Hi! When will be some update? Like dark theme and etc. would be great!
Hey
Of course, i am still working on it. Will be available very soon! Dark theme is my highest priority for now.
Thanks
I paid $ 30 for the template and I don’t see the forms section as shown in the screenshots. Please, help me.
Thanks in advance
Hi
I have replied back to your email, please check.
Thanks