90 comments found.
I have the Decima – Bootstrap 4 Angular 4 Admin Template and it does not work with IE. However it works in Chrome. When loading in IE the error message is “This page is having a loading problem”
Thanks will take a look at the issue
I have had an issue using the headerClass and cellClass parameters to right-align or center-align columns in ngx-datatable. Whatever I put in there is overridden by the values in _datatable.scss. So I comment out the text-align attributes in .datatable-header-cell and .datatable-body-cell. Is there a better way for me to accomplish that?
It should be fine commenting out these attributes. Thanks for buying
Hello, @iamnyasha! I’ve received that have an update on this template. But, I didn’t see any changelog. Can you share this info with us, please?
After the implementation of the template, changelog helps us on the decision of what update is relevant for us.
Hi neilor, changelog file is included in the download package (CHANGELOG.md). Will update the item description with latest changes as well. Thanks
Hi I would love to buy your decima-angular 4 theme, it looks amazing, what holds me back is that pages do not scroll in firefox. Due you have an ETA on when this will be fixed?
I just went ahead and bought, however i would like to know if this will be fixed any time soon. btw, i loved the project, very well done.
Hi, thanks for buying. Will post the fix in the next few days. Cheers
Thank you, looking forward to it.
Should be fixed now. Thanks!
Thank you.
One more question.
Does this template uses only de Angular CLI commands like ng serve, ng build, ng build—prod? Or it uses other cli commands?
It uses only angular-cli. Thanks
Nice work!
Does this template uses libs that are not managed by npm? Does it uses jQuery or other lib that manipulate DOM (besides Angular)?
All packages are manage by npm and jquery isnt used. Thanks
Hi @iamnyasha i have a question, could you tell me how can i generate new component from your blank page? can i?
Hi, Use the angular-cli tool to generate new components, have a look at the usage instructions here https://github.com/angular/angular-cli#generating-components-directives-pipes-and-services . Thanks
Hi! Nice job, your code quality is inspirational.
I have a small problem, how can I fix the bug with the height of Fullscreen Map?
Thanks!
Glad you like it. In fullscreen.component.scss under agm-map change height: 100% to height: calc(100vh – 55px);
Thanks for buying
Nice, I did this but without confidence. Reading the documentation, I’ve found .page-height, what about this? Is it the same?
Agh yes you can use this class as well. Be sure to remove the height: 100vh; on agm-map
Hi,
I see that page scroll not works with mozilla firefox desktop and mozilla firefox mobile and the left navbar (with email messages) of the email not shows well in both mozilla firefox platforms, I can see the latests messages. See the screenshots (http://prntscr.com/fr8aik, http://prntscr.com/fr8c5t)
Thanks.
Albert
I can see the scroll issue. Will provide a fix for it. Thanks for reporting!
Hi, on demo version of theme on Datatables when columns are sorting row editing not work. I told you about this error 20 days ago, when you fix it?
It works the same way in the official docs http://swimlane.github.io/ngx-datatable/#inline-edit so will post a fix once its fixed in the official package
Hi,
I want to clear few queries before buying it.
1. Is it possible to try before buying it ? 2. how the wikipedia type head component working ? is it re-usable component, can re-use any api method ?
Thanks in advance
Hi, 1. It’s not possible to try before buying. 2. The template is using some components from https://ng-bootstrap.github.io/#/components/typeahead so you can modify to suit your needs.
Thanks
Are there any email templates that could be made available with this template? Thank you!
Currently there aren’t any
Hello, I am not very gogod in english, but i have same question to you about Decima theme.
I buy it now and i want to integrete it in my existing project. did you gave me a way to do that?
All depends with what you already have but you can just get rid of the components you don’t need and start adding the ones from your existing project
Just got an email mentioning about the updates.Request you to please also mention somewhere what kind of changes you have made.
Added a changelog file in the download package and you can get access to the github repo and review the commit logs. Thanks
We are interested in using your UI design for our admin user panel, do you do customizations? How much would it be?
Hi, Currently not available for freelance work. Thanks
Hello! Is it possible to have the template without angular?
Thank you 
Hi, only angular version is available. Thanks
Hi,
I just purchased your theme. I was thinking there will be some documentation regarding how to get started with our own project. I got you app running, but can you please guide how do i start building my own app and add your components/features from your project, as and when required. I started node/angular few months back but starting today will be my first attempt to actual building something concrete.
Hi, it’s ready to go as is, all you need to do is add your own components and remove some of the included ones that you don’t want to use. https://github.com/angular/angular-cli will guide you on generating all the components and services that you need. Thanks
Yes that’s true and i must say its very well written(coding standard wise). However for people like me who are starting new with admin themes, there should be basic guidelines. Using this fully prepared theme and removing items can be confusing for beginers as most of the time you are wondering why its not working(in case you did something wrong).
I have managed to start finally with the template and below are my findings(expecting you have angular cli already installed):
1. Target is to have only one module and dashboard
2. Start with fresh angular CLI project. This matches with theme version.
3. From theme, apart from core angular packages, copy the rest dependencies from package.json. Regarding resize-observer-polyfill package, i was not sure that why its in dev-dependencies rather in dependencies. I moved it to dependencies. Need to see what it actually does.
4. app.routing.ts has all the primary routes registered. Copy from theme and remove one you dont need.
5. app.module.ts has all regisrations for modules. NgbModule, SidebarModule, TranslateModule, RouterModule are important (others are also). These 4 are forRoot. Rest all are lazy-loaded
6. No HTML in app.component and pages are loaded via index.html that has <app-root>. It is also the file where you will change the favicon, app loading icon and Title. There are some on page css written but i guess thats ok as its only on one page. Also base href, keep this place in mind if you are not going to host it on root domain name.
7. Copy the mandatory – Shared, Layout, Dashboard, Error(you 404 page and others are here). I am also copying Components just to check.
8. Shared folder has menu-items that has all the menu items visible in sidebar. Its pretty straightforward to understand. Remove the one you dont need. Also when you add a new module/component, and want to display in sidebar, add it here also.
9. admin-layout.component.html is where you will change you logo, title for pages. Menus are very wisely written, i must say
10. another important folder is assets->i18n. If you are going to provide language translation, you r key value pairs will go here. I am new to this and it took me some time to understand that why in sidebar, Social Button are shown as ‘Social Buttons’ and not ‘SBUTTONS’ as defined in menu-items.
11. Most important -> in package.json, for design elements, make sure to work with same version number of packages as described in theme, otherwise you will see breaking changes. For me the sidebar was not showing up for quite some time and culprit was ng-sidebar as i installed the version like ^5.x.x
Please correct my findings if they are wrong at any places. Hope this helps someone.
This is basically it. Just to note on … 3. Resize observer is used to resize the map in the fullscreen version, resize-observer-polyfill is just the polyfill we are using for older browsers.
11. if you remove dragula, quill, angular-calendar and ngx-datable from package.json you’ll also need to remove the corresponding styles from .angular-cli.json otherwise you’ll get some errors
Thanks a lot for this breakdown
Great theme and keep up the great work. I request you to include form wizard also!! If its already planned then by when can we expect the update?
Glad you like it and thank you for buying. Will add form wizard in a future update.
I have an issue with the pagination controls in ngx-datatable. The prev, next, and last controls are loaded with ’...’ which is nearly invisible. I would like to change them to ’<’, ’>’, and ’>>’ respectively. Can you tell me how to do this?
Hi, Thank you for buying. ngx-datatable pagination will be updated in the next few days and will use the official icon set and styled to go along with bootstrap pagination. Cheers
How do I use fontawesome or simple line icons with the menu? when i change the icon name to what’s on your Icons page, the menu item still makes space for the icon but is actually blank.
actually, never mind. import the css… works. Great theme!
Great!