2227 comments found.
I need your help, please. I got this error:
http://s28.postimg.org/bfwkj89q5/aaaaaaa.pngMy code:
| Arquivo | Projeto | Data | Status | Ação |
|---|---|---|---|---|
| como emagrecer | Emagrecer | 20/11/2015 | Texto Usado |
|
If I just add a th + td empty, code works correctly. I searched but I dont got solve this problem. Please help me.
Seems like you have a markup issue with one or more extra table cell. Check your th’s and td’s number, they must be equal.
Thanks
I found problem. There is a set to 5 columns in file datatable basic, but I remove this line and now it works. Thanks.
Exactly, it just can’t initialize plugin functionality on empty columns.
Thanks
I really like your theme. Congratulations. Even I’m not a excelent programmer, I can use almost something easily, without troubles. =]
Thank you very much! 
I got a short question. I just cloned a widget in the dashboard (Layout 4, members online widget) and replaced the “Current server load” widget. The histogram in the cloned witget’s footer is somehow gone. What is wrong? I need only a quick and dirty solution for some demo purposes. Thank you.
Hey.
Make sure you don’t have duplicated ID’s that initialize the same chart.
- Go to assets/js/pages/ and open dashboard.js file
- Search for “members-online”
- Copy init code and name it differently using unique id
- Copy/paste markup with this id
Let me know please if all good. Thanks
That was the problem. Thank you for your quick support.
You are always welcome 
1) What kind of Chart library did you use for the demos? 2) Are the main template files all in html extension? I’m using a javascript framework so I can’t use the installer. I just need the pure HTML files as well as all the CSS and whatever else that makes up the theme.
Thanks for the response.
Hey.
This is a pure HTML/CSS template with integrated JS plugins, extensions, libraries and based on Bootstrap. All stylings are based on LESS, compiled CSS included.
Thanks
What chart library did you use in the demo? Like ChartJS, D3, Highcharts, etc, etc…
Dashboard – native D3.js; other available – C3.js, Google charts, ECharts and Dimple. C3 and Dimple are built on top of D3.js
Navigate through Data visualization pages to see examples.
Thanks
I think the biggest selling point for me will be having more pages templates to work with. Waiting on next update for a purchase.
More to come, currently main focus is on functionality, but static page examples will be also extended in each update.
Thanks
hey.. i m workin’ hard on my personnal app : can you pm me what i have to check for the next update to work? When the next update ready?
Hey.
I am working hard on it, i believe should be ready within 2 weeks, adding new functionality and updating current. Once approved, you’ll get an email automatically.
Thanks!
Hello,
What is meaning of the line 3253 in file core.css. i think its wrong and w3c css validator found 3 error in this file.
http://imgur.com/HJDEzetHello.
Ohh, thank you for informing me, will be fixed in upcoming update. Nothing really serious, but needs to be perfect. I’ll check other files as well.
Thanks!
steps wizard and typeahead conflict, I have tried to use typeahead within steps wizard, but typeahead not working. when I remove steps wizard, typeahead is working perfectly. Kindly help me to fix it.
Hi.
Tried just now, everything works fine. The only scenario when it failed is when typeahead is initialized before wizard. So try to initialize typeahead AFTER steps wizard and let me know if it works.
Thanks
Hi Kopyov, Thanks, it’s working fine when typeahead initialized after steps wizard..
Great, let me know if you have any other issues
Can this be a local? In China, the visit is not Google
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700,900" rel="stylesheet" type="text/css">
Yes, you can download Roboto Web font and use it locally by using @font-face.
Thanks
Hi, is it possible to use AngularJS with this template?
Hi.
It is possible, since this is a static HTML template, it’s ready for integration with any framework. Angular version of the template will be added in a few updates.
Thanks
Hi, do you think it will be available in a month or less?
More than a month unfortunately. The first priority is new functionality which is already planned. After that I’ll add BS4 version and then angular for all layouts. Sorry
Thanks
$(".select-loading-data").select2({
minimumInputLength: 1,
//minimumResultsForSearch: "-1",
ajax: {
url: "/admin/users/select2/json/",
dataType: 'json',
data: function (term, page) {
return {
q: term,
limit: 10
};
},
results: function (data, page) {
return {results: data.results};
}
},
createSearchChoice : function(term, data) {
return { id: term.username, text: term.username };
},
formatSelection : function (item, data) {
return item.username;
},
formatResult : function (item) {
return item.username;
},
escapeMarkup: function (m) { return m; }
});
I don’t know. Do you get any errors in console?
For your information, please refer to this page, Loading remote data example, there is a sample code.
Thank you, take it.
Hi, first of all, you did an amazing job with this template ! Have you planned to release a material design version ? (with or without polymer).
Thanks for your answer !
Hey.
If you mean this Polymer, I was reviewing this library already, in previous version they used shadow DOM, where most of plugins didn’t work. They’ve released a stable version with dropped Shadow DOM support, haven’t tested it yet. If it allow us to use the whole functionality available, I will definitely consider adding this version.
Thanks!
Hi,
Having a bit of trouble with select2. The issue is that I am unable to click the drop down box, when I do, nothing happens and no errors are sent to console. Same with styled check box’s. I check them and they immediately uncheck themselves.
http://pastebin.com/3BZih6RPThanks for the help, it’s great theme!
Hello there.
I’m out of my workstation for 2 days, will be back tomorrow and check the code. Sorry, unexpected day off.
Thanks!
Hi,
I’m back. So, first of all, you need to load app.js and files from /js/pages/ folder always last. These files have setups and plugin initializations, include them after all JS files – plugins, libraries, extensions etc.
Second off – if that markup you’ve added to the pastebin is what you are using, this is incorrect. You’ve copied markup from already initialized plugins, for example select2 should have only select element with a class added to it. Your markup has a full code generated by select2 and you try to initialize plugin for that generated code. You need to clean up your code. For example, your checkbox now looks like this:
<label class="checkbox-inline">
<div class="checker">
<span>
<input type="checkbox" class="styled">
</span></div>
Pupil Premium
</label>
As you see, you try to initialize Uniform plugin for an element, which already has generated markup. In this case the correct one should be:
<label class="checkbox-inline">
<input type="checkbox" class="styled">
Pupil Premium
</label>
The same is for select and other elements. My suggestion is – open example pages with form components and copy/paste the code, do not copy the code from browser 
Thanks!
Great job, the theme is very good. Will you add front-end pages ? Like http://demo.interface.club/limitless/
Hey.
Unfortunately not at the moment. The main reason – Envato doesn’t allow authors to include “bonus” items from another categories as it was before. Sorry about that. Anyway, i’ll add more related pages, like ecommerce set, news, blogs, more content widgets etc. to keep everything under 1 category.
Thanks
Cool documentation, clear code, cutting edge ideas on design elements.
Thank you so much! 
Very awesome template and good support from Author. I would highly recommend it to my friends and customers.
Cheers to all
Thank you so much for such a kind words!
Hey ! Started to code with your great template. Will BS4 migration completely change the template ? I dont want to code avait and Again…
Hey.
No, it will look exactly the same as now. The only difference will be Bootstrap core and Sass instead of Less. All other features remain the same. No worries, i’ll include a detailed migration guide – what files to update, where and how.
Thanks
Thanks ! Great to obtain such rapid answers!
You are always welcome. Here is the breakdown and todo’s of v.4.0, there are still some features in progress. Once they will be out of alpha, i’ll start implementing it.
Thanks
Hello. Could you please provide an approximate estimation when there will be Angular support? thank you
Hello.
In 2 weeks i’ll start BS4 integration, right after that i’ll do Angular version of both – BS3 and BS4 versions. Timeframe – can’t tell you the moment as i don’t know how long next 2 updates will take. Once upcoming update will be out, i’ll add approximate timeframe to the template description.
Thanks
hi
When using file input Bootstrap, I added the uploadUrl why click the upload button to directly GET to this page
$('.file-input').fileinput({
uploadUrl: "/admin/file-upload-single/image/",
allowedFileExtensions : ['jpg', 'png', 'gif'],
browseLabel: '',
browseClass: 'btn btn-primary btn-icon',
removeLabel: '',
uploadLabel: '',
uploadClass: 'btn btn-default btn-icon',
browseIcon: '<i class="icon-plus22" /> ',
uploadIcon: '<i class="icon-file-upload" /> ',
removeClass: 'btn btn-danger btn-icon',
removeIcon: '<i class="icon-cancel-square" /> ',
layoutTemplates: {
caption: '<div tabindex="-1" class="form-control file-caption {class}">\n' + '<span class="icon-file-plus kv-caption-icon" /><div class="file-caption-name" />\n' + '</div>'
},
initialCaption: "No file selected"
});
Don’t know if it’s the ‘assets/js/plugins/uploaders/fileinput.min.js’ in your template. I download the latest ‘fileinput.min.js’ is not a problem, you can upload the normal, with you that, the point of direct jump to the’ uploadUrl ‘page
Yeah, this is exactly it. I am sorry, but i don’t understand the issue. I did provide a link to the plugin website, there is an explanation about form submission modes. Seems like you’re doing something wrong. here is that page.
Please do not flag my posts, because i have to explain the same thing twice.
Thanks