229 comments found.
any update on inbox/task management app?
inbox available in next update. Thanks
Hi. When can we expect to have html version? would you have any updates with new features?
Hi. I am actually a newbie with AngularJS and was looking at your template. I liked your template but I am not sure if I will be able to use it for my application or not considering AngularJS as new thing to me and need fast development. Can I get some free version just to check if I can work on with this and if I like and actually release my application then I will buy it from you.
Looking forward for positive response.
Regards
How do I add footer.html?
Hello,
Amazing Theme 
Dear Flatfull, I get the whole screen gray when i use an md-select component into the AngularJs version of Materil and I press on it to change the selection.
How can I disable footable-sortable and angular pagination? And the html version text input animation is wrong, please have a check. It’s different with angular version.
Use these code to fix the input float label for html version
+function ($) {
$(function(){
$(document).on('blur', 'input, textarea', function (e) {
$(this).val() ? $(this).addClass('has-value') : $(this).removeClass('has-value');
});
});
}(jQuery);
http://fooplugins.com/footable/demos/sorting.htm#docs
you can use data-sort=”false” to disable the sorting, and data-page-size=”100000” for no pagination.
Thanks
Thanks. I use angular version bug I don’t want it to paginate automatically. When I set data-page-size=100000, then the paginate I render by my backend will dismiss later. how can I disable that?
I changed to html version, still the same problem, I just want to let it don’t hide automatically. Maybe I can place it out of table, I’ll have a try, thanks.
Hello, I state that I have always used wordpress. I never used bootstrap. How can I allow users to sign up to my web app with this template? thanks
You can use these plugins for you web app, https://github.com/WP-API/WP-API , and https://github.com/WP-API/OAuth1
Thanks
Hi Flatfull,
When I open the index.html of the app in Chrome OSX. The application switches very fast between index.html#/ and index.html#/app/dashboard, it redirects one to the other. The same with Safari, only Firefox is working properly. Do you have a solution for this?
regards
When you open page http://localhost:8000/angulr/src/index.html or http://localhost:8000/angulr/src/ , it will redirect to ihttp://localhost:8000/angulr/src/index.html#/app/dashboard or http://localhost:8000/angulr/src/#/app/dashboard ,
clear your browser cache and try again and make sure there is no js error happens.
Thanks
When clicking select-box, the page is loading again itself.
https://www.dropbox.com/s/9iugww63rhr0g21/Screenshot%202015-06-09%2015.56.54.png?dl=0How do I add select box in this style and with .js?
https://material.angularjs.org/latest/#/demo/material.components.selectBtw it’s awesome theme.
Hi! The information on the template states that it is “well documented”, apart from a readme file with just a few instruction on how handle the node.js side of things I cannot find anything with details on the template structure, color schemas, etc…
I’m I missing something?
Hi,
can this be used as the UI for a Parse.com web app? Parse provide a Javascript (https://parse.com/products/javascript) and PHP SDK (https://parse.com/products/php)
Best wishes
Avery
You can use the layout and css. Thanks
The theme html lack much, pricipalmente text editor, bought the template primarily because of it, is leveling the Caribe; full html?
If not, how do I get my money back, it would be useless for me
You can use this editor https://github.com/summernote/summernote
Will include in next update. Thanks
Any update on calendar function?
Is there an example of a modal for the design? I’ve clicked through but can’t seem to find it.
Hi, I bought this theme, and unfortunately it doesn’t have angular version. Please help me how can I download angular version.
Thanks,
The “app” folder is the angular version.
Follow the README.md steps, and run ”>grunt build:angular”, it will generate the “angular” folder with minified css and js.
Thanks
Hello, I bought the template but I’m struggling to make it work. See the log:
0 info it worked if it ends with ok 1 verbose cli [ ‘node’, ’/usr/local/bin/npm’, ‘start’ ] 2 info using npm@2.5.1 3 info using node@v0.12.0 4 verbose run-script [ ‘prestart’, ‘start’, ‘poststart’ ] 5 info prestart Materil@1.0.0 6 info start Materil@1.0.0 7 verbose unsafe-perm in lifecycle true 8 info Materil@1.0.0 Failed to exec start script 9 verbose stack Error: Materil@1.0.0 start: `node node_modules/http-server/bin/http-server -o` 9 verbose stack Exit status 1 9 verbose stack at EventEmitter.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/lifecycle.js:213:16) 9 verbose stack at EventEmitter.emit (events.js:110:17) 9 verbose stack at ChildProcess.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/spawn.js:14:12) 9 verbose stack at ChildProcess.emit (events.js:110:17) 9 verbose stack at maybeClose (child_process.js:1008:16) 9 verbose stack at Process.ChildProcess._handle.onexit (child_process.js:1080:5) 10 verbose pkgid Materil@1.0.0 11 verbose cwd /Users/paulooliveira/work/java/materil 12 error Darwin 14.3.0 13 error argv “node” ”/usr/local/bin/npm” “start” 14 error node v0.12.0 15 error npm v2.5.1 16 error code ELIFECYCLE 17 error Materil@1.0.0 start: `node node_modules/http-server/bin/http-server -o` 17 error Exit status 1 18 error Failed at the Materil@1.0.0 start script ‘node node_modules/http-server/bin/http-server -o’. 18 error This is most likely a problem with the Materil package, 18 error not with npm itself. 18 error Tell the author that this fails on your system: 18 error node node_modules/http-server/bin/http-server -o 18 error You can get their info via: 18 error npm owner ls Materil 18 error There is likely additional logging output above. 19 verbose exit [ 1, true ]
update your node.js and try again.
thanks
I reinstalled the node and its dependencies and it worked. Thank you!
Hello!
I’m developing an app using Emberjs. With this theme I can migrate easily from Angular to Ember? Are you using bower for dependencies? What do you think about it?
Thank you! Amazing theme 
This theme using bower and grunt. you can use the css and layout if you want to use the emberjs.
Thanks
Hi,
I have the same problem as the user @mkrieger where the floating labels overlap on tabbing out it only happens on the html version, not in the Angular, do you have any info on this? – thanks!
it happens on which page? Thanks
here you can see first or last name http://flatfull.com/themes/materil/html/ui.material.form.html and all fields here http://flatfull.com/themes/materil/html/signin.html for example
Need check the input is empty or not. you can quick fix using below code.
+function ($) {
$(function(){
$(document).on('blur', 'input, textarea', function (e) {
$(this).val() ? $(this).addClass('has-value') : $(this).removeClass('has-value');
});
});
}(jQuery);
will fix in next update.
Thanks