211 comments found.
i purchase the plugin and i’m using it in a project, but who i disable scripts from the vendor? theres 5MB .
Hi 3079604,
Check out the vendor.json file located in ‘app/vendor.json’. There you can add/remove your references to any vendor scripts. Then re-run the project build and that will create your new vendor bundle.
Uses angular cli ? version angular and cli if use. ?
Hi,
Yes, it uses the latest Angular CLI. Here’s the version numbers for it.
"@angular/core": "^4.3.3", "@angular/cli": "1.2.7", "@angular/compiler-cli": "^4.3.3",
hello,
First, congratulations on the theme, it really looks beautiful!
I have been trying to run the angular4-full v. 1.5 project by running:
- npm install - ng build
NPM packages restored fine, but unfortunately, I got a compile error when running the Angular CLI build command:
WARNING in ./src/app/shared/shared.module.ts 83:16-28 “export ‘MdCoreModule’ was not found in ’@angular/material’
WARNING in ./src/app/shared/shared.module.ts 147:16-28 “export ‘MdCoreModule’ was not found in ’@angular/material’
ERROR in path/angular4-full/src/app/shared/shared.module.ts (17,2): Module ’”path/angular4-full/node_modules/@angular/material/material”’ has no exported member ‘MdCoreModule’.
ERROR in MdCoreModule is not an NgModule
ERROR in path/angular4-full/src/app/shared/shared.module.ts (17,2): Module ’”path/angular4-full/node_modules/@angular/material/material”’ has no exported member ‘MdCoreModule’. webpack: Failed to compile.
Please not that no file has been changed. Could you please help me to fix this?
Thanks in advance for your help.
Hello,
It sounds like your Material Design package didn’t install properly. Please check your node_modules folder and see if you have this file ‘node_modules/@angular/material/typings/core/core.d.ts’ On line 31 of that file you should have ‘export declare class MdCoreModule’. Please let me know if you see that.
Hello,
Thank you for your prompt reply. In the typings/core folder, I have a bunch of folders and only 3 typescript files:
- index.d.ts, - mat-exports.d.ts, - and public_api.d.ts
There’s no file named core.d.ts. This is strange… I have deleted node_modules two or three times and run ‘npm install’ several times…
Try deleting your package-lock.json file and the node_modules folder first, then run npm install again. That lock file might be holding on to something.
I have followed your instructions, still the same compile exception no core.d.ts file…
That’s strange, please email me your package-lock.json and your package.json files to support@authenticgoods.co
Hi I want to know about admin panel means folder management like create a new folder, create subfolders, delete the folder, move folder, drag and drop folder, download folder.
I have seen your template in the demo but create the new folder working can you please help me so I can buy your template if my requirement is matched, or you can suggest the better template for folder management.
Hi, The file management portion is front-end only, you would need to create the click event bind and wire it up to your database to create the ‘crud’ portion of your app.
If am integrated backed every functionality working fine means edit folder delete folder move folder is it working on UI now????
No it’s just what you see in the preview, that’s the extent of it.
Also, I want to know that your Angular 4 version is npm based or bower / gulp based?
The Angular 4 is npm based, no bower or gulp. Those are being used on the static jQuery version.
Ok Thanks. This is what i am looking for. I need only npm based version. Please fix the responsive table issue so that i can buy it ASAP
Hi, I have seen your template & it is quite impressive. I am mostly interested in Angular 4 version but the tables are not responsive. Can you fix that?
Hi – thank you very much! I can add a responsive version where the table has a horizontal scrollbar, or here’s another approach that I was thinking about. http://swimlane.github.io/ngx-datatable/#responsive
Thanks. Please fix that ASAP
Hi, any plans for adding calendar to this?
so nice template but i need a calendar 
kind regards Renza
Hello, thank you very much. We plan on adding a calendar after the release of the front-end template.
The preloader is not working anymore, still have the preloader.service.ts and it’s still in the app component, which steps do i have to take to see what’s missing?
What do you mean it’s not working anymore? Did you accidentally remove it from your local copy? Do you still have this on your index.html file?
<div id="loader-wrapper" display="none"> <div id="loader"> </div> </div>
This has been saying “Front end: coming soon” since I purchased several months ago, and there have been a few updates since, but still no front end. How soon is soon?
Had a much higher demand for Angular 4 so that project came first, so this one’s probably next on the list.
The template is amazing, congratulations.
The problem is that it is unusable. The vendor-bundle-already-compressed javascript file is 2.5MB…... uncompressed is 5MB.
We need a version of this template that it’s not bundled so we can choose to load only what’s really needed on each page.
I looked for the separate files but they are not there, and it seems that the way the app.bundle.js is coded really requires to load ALL modules to work.
Please help us solve this issue, you clearly have the best implementation of Material Design on Bootstrap. Help us use this awesome template.
Thanks!
Hi,
Thank you for the kinds words!
In the root folder of the download package you’ll find 2 seeds projects. One for the Angular 4 project and one for the Static version. The one you’re looking for is the folder called “jQuery-seed”. This will be your stripped down version of the project for you to start with and add only the plugins and/or modules you may need from the full project. This vendor.js file is much lighter coming in at only 360 KB and the app.bundle.js at 74 KB.
Hope this helps!
Thanks for the quick response 
So if I’m getting this right, I should combine jquery-seed/dist/assets + jquery-seed/app/js/modules ?
Hi,
Let me see if I can explain this a little better. You’re going to have 2 main JS files that get minifed and uglifed for production.
These files are located here:
jquery seed/dist/assets/js/app.bundle.js
jquery seed/dist/assets/js/vendor.bundle.js
Everything in the jquery-seed/app folder will be for development and everything in the jquery-seed/dist/ folder will be for production.
There’s a couple of build process that will take your files from the jquery-seed/app/ folder and moves them to your jquery-seed/dist/js folder.
Let’s start will all of your custom JS modules files…
All of the JS modules in the jquery-seed/app/js/modules/ folder get imported into one file which is the jquery-seed/app/js/app.js file. So if you want to add or remove a custom JS module file you’ll do that on the app.js file. The app.js file gets ran via webpack. Take a look at the webpack.config.js file located here: jquery-seed/app/webpack.config.js There you can see the app.js file getting pulled in where it will then get ran through the webpack’s bundling process then exported into jquery seed/dist/assets/js/app.bundle.js That file will contain the minified version of all the custom JS modules for production.
Now for the 3rd party plugin files there’s a vendor.json file with all of the locations to those files. The gulp process will handle the build process for these plugins and export those out to jquery seed/dist/assets/js/vendor.bundle.js So if you want to add or remove a plugin you’ll first install it then add or remove the location entry inside of this vendor.json file.
So webpack will handle your custom JS modules and gulp will handle combining your 3rd party plugin files.
Hope this helps!
Hi! I’m having the following error on npm install:
npm ERR! file sh npm ERR! code ELIFECYCLE npm ERR! errno ENOENT npm ERR! syscall spawn npm ERR! ng2-search-filter@0.3.1 postinstall: `typings install` npm ERR! spawn ENOENT npm ERR! npm ERR! Failed at the ng2-search-filter@0.3.1 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in: npm ERR! //*/.npm/_logs/2017-09-05T11_42_47_899Z-debug.log
and when I start with “ng serve” i get the following erro too:
ERROR in ///Downloads/MaterialWrap-v1.5/angular4-full/src/app/pages/mail/mail.module.ts (6,37): Cannot find module ‘ng2-search-filter’.
ERROR in Error encountered resolving symbol values statically. Could not resolve ng2-search-filter relative to ///Downloads/MaterialWrap-v1.5/angular4-full/src/app/pages/mail/mail.module.ts., resolving symbol MailModule in ///Downloads/MaterialWrap-v1.5/angular4-full/src/app/pages/mail/mail.module.ts, resolving symbol MailModule in //*/Downloads/MaterialWrap-v1.5/angular4-full/src/app/pages/mail/mail.module.ts
Hi, It sounds like you may need to install typings as a global dependency. Try running this command: npm install typings -g
Lots of thanks, never used typings before so there was my problem!
hello
pre-sale questions. are you going to update the html version to boostrap 4? any plans for adding gantt-chart to this?
very nice template
regards Martin
Hey Martin, thank you very much! Yes, plans are in the works for updating the static version to bs4. Have not thought about making a gantt-chart, but that maybe something to consider.
Hello Sir,
I purchased Material Wrap – Multipurpose Admin Theme , for Angular 4.
I am using bs-modal , it works fine but when I used Basic select inside bs-modal , It not works properly , when I click on select , list not display inside modal , instead it shows when i close modal .
Am i missing any css or configuration?
Regards, khushbu
Hi, It looks like the z-index of the select needs bumped up when they’re inside of a modal. I’ll add a fix for this, thanks for letting me know! In the meantime please add this z-index overwrite to your css to fix the issue. .cdk-overlay-container { z-index: 1150!important;}
Hi , I have tried with it .. can you tell me exactly where i should put this css ?
Yes, you can place it on the _modals.scss file which is located at ‘src/app/shared/styles/main/components/_modals.scss’
Hello ,I have putted in Base.css and it works ….Thanks for your support
Hi can you add support for select2.js?
Do you need it for the jQuery or Angular version?
Hello Sir,
I purchased Material Wrap – Multipurpose Admin Theme , for Angular 4.
I want to use Nav Pills from tabs-pills , for <tabs-over-card [tabColor]=”’tabs-info’”> how can i change heading and icon for tab?
Regards
Hello,
That is a shared component, you can find the source of that component inside of ‘app/shared/components/cards/tabs-over-card/’ There you can change the tab headings and icons.
It works !! thanks a lot for Support
Awesome, glad to help! 
Hello Sir,
I purchased Material Wrap – Multipurpose Admin Theme , for Angular 4.
we have setup the theme ,now I want to make Login page as root page , I have do some change in layout.routes.ts set login page instead of Dashboard , but the issue is left side bar remain in login page also , I want only login page should display .
can you suggest me what changes should i do?
Regards
Hi, It sounds like you’ve moved the login route into the LayoutComponent routes if you’re getting the left sidebar, if so you won’t need to do that. The location of the Login route is outside of that for this reason. You can start with the master route at “app.routing.ts” and add the Angular’s AuthGuard https://angular.io/api/router/CanActivate This will allow you check if the user is logged in before sending them to the dashboard route.
yes , I have add login route into layout.route.ts .. should i put it out side it ? if yes then what should be loadchildren value in app.routing.ts for login module?
One way you could do it is to move your Login route up to the parent route ‘app.routing.ts’ and protect the LayoutModule routes like this https://codeshare.io/216jvq
it is fine but , according to this route my first landing page will become Dashboard , i want it should be Login page.
If you just simply want that to be your first landing page every-time you can just add a login route above the Layout route, like this.. https://codeshare.io/216jvq
It works !! thanks a lot for Support
Awesome, glad to help! 
Hello ,
I have set Login route as you given in code , but when i compile application first time ,it gives me an error like
Could not resolve ”../pages/authentication/login/login.module” from “E:/GitProjects/RealEstateWeb/RealEstateWeb/RealEstateWeb/RealestateWeb/src/app/app.routing.ts”.
If i click save login module from code ,it resolved , can you suggest me any solution?
Regards, khushbu
Hi ,
i’m planning to purchase your template. will you able to give a support for landing pages like the below templates on angular2 (e.g pages. about, social signIn , Signup ,price and service ) ? please let known how much it will cost more ?
https://themeforest.net/item/material-design-admin-with-angularjs/13582227?_ga=2.183763174.1923188588.1503237158-1208371163.1503237158Hi,
Yes for sure, this template currently contains several of these pages such as Authentication/Login, Authentication/Sign Up, Authentication/Lock Screen, Pricing Tables, Invoice, Locations, Profile Page, Timeline, Gallery Page, etc. Is there something missing from these pages you need?
Left arrow is not working in textareas, removed everything that has with textarea and keycode in app.bundle.js but nothing fixed it. What to do, please.
Hey,
Good find, thank you for reporting this. Upon further investigation I found the culprit to be the Pikaday Calendar plugin. It seems to be attaching itself globally. You can find the issue located inside of ‘bower_components/pikaday/pikaday.js’ lines 520 -523 They have a case statement with keycode 37 aka Left Arrow key. If I comment out these lines and re-run gulp that fixes that issue and prevents my Left Arrow key from getting hijacked. So you could do that for a quick fix, but I’ll figure out a more permeant fix for that and include it in the next release.
Please let me know if you need any help with that and I’ll help walk you through it, thanks again.
Hello, thank you for your hard work on this template, it looks really good. A couple observations when running npm install:
Node – v6.11.2 NPM – v3.10.10
Error: npm ERR! ng2-search-filter@0.3.1 postinstall: `typings install` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the ng2-search-filter@0.3.1 postinstall script ‘typings install’.
Warnings:
npm WARN EPEERINVALID bootstrap@4.0.0-beta requires a peer of popper.js@1.11.0 but none was installed.
npm WARN EPEERINVALID ng2-datepicker@1.8.3 requires a peer of angular/forms2.4.0 but none was installed.
Hi, could you do me a favor and update your npm to v5? I wonder if your npm v3 might be the issue here. With v5 they started supporting the lock files which help with package versioning issues. Thanks for your help.
Tried a fresh folder & npm install. Node v8.40, NPM v5.3.0.
Error: npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! ng2-search-filter@0.3.1 postinstall: `typings install` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the ng2-search-filter@0.3.1 postinstall script.
Warnings:
npm WARN bootstrap@4.0.0-beta requires a peer of popper.js@1.11.0 but none was installed.
npm WARN ng2-datepicker@1.8.3 requires a peer of angular/forms2.4.0 but none was installed.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.1.2 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.2: wanted {os“} (current: {os“})
Windows or Mac?
Win 10 Pro – build 15063
I wonder if you don’t have typings installed as a global dependency. Try running this command: npm install typings -g
Perfect! Apologies for any ignorance, just redid my development machine recently. FYI, same npm warn’s exist as well as a few deprecated warnings. Thank you for the help and quick response.
No thank you! I’m working on building some more robust documentation and I’ll be sure to add this check.
I quickly reviewed the Angular version 4. I have some observations. - E-Commerce: The header bar is moved slightly by passing the mouse over some button (Magnifying glass). - E-Commerce: The edit window (icon pencil) product is not displayed. - Taskboard: The right window when editing a taskboard task is not displayed. - Taskboard: Creating a taskboard task is not displayed. - Locations: The coffee places on the right side are not displayed, there is no interactivity with the map.
Thanks for the feedback, I’ll be adding those features next. I tried to take the original static version and make everything interactive and dynamic with the Angular version. I plan on adding more apps and features soon. So if there’s any feature you think it might be lacking please let me know, and I’ll see about adding at it. 