Quick start
1. Install NPM Package
npm install --save angular-slickgrid bootstrap # the last dep is optionalImportant note about ngx-translate
ngx-translateNow optional
Angular Version
@ngx-translate/core
2. Modify the angular.json and tsconfig.app.json files
angular.json and tsconfig.app.json filesprevious Angular versions were using .angular-cli.json
.angular-cli.json"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css", // optional, install when you use Bootstrap
"styles.css"
],
"scripts": [
"node_modules/bootstrap/dist/js/bootstrap.js", // optional, install when you use Bootstrap
],3. CSS / SASS Styles
CSS
SASS (scss)
4. Include it in your App Module (or App Config for Standalone)
App Module (legacy)
Standalone (App Config)
Angular 7+
5. Install/Setup ngx-translate for Localization (optional)
ngx-translate for Localization (optional)If you don't want to use any Translate Service and use only 1 Locale then take a look at this demo
without Translate
with Translate
6. Create a basic grid
7. Explore the Documentation
8. How to load data with HttpClient?
HttpClient?9. Live Demo - Clone the Examples
10. CSP Compliance
11. Missing Features compared to SlickGrid?
12. Troubleshooting - Build Errors/Warnings
Last updated