-
-
Notifications
You must be signed in to change notification settings - Fork 120
HOWTO Step by Step
NOTE these instructions are for the latest Angular-Slickgrid v6.x and might be different for earlier versions of the lib.
Install the Angular-Slickgrid
, and other external packages like Bootstrap
and Font-Awesome
(Bootstrap, Font-Awesome are optional, you can choose other lib if you wish)
npm install --save angular-slickgrid bootstrap font-awesome # the last deps are optional
# install required @types
npm install --save-dev @types/sortablejs @types/dompurify
ngx-translate
is now optional as of version 2.10.0
, see more info below at step 5
NOTE please note however that @ngx-translate
will still be installed behind the scene to make DI (dependency injection) not complaining when using @Optional()
but it should be removed by the build tree shaking process once you run a production build. See their version compatibility table below
Angular Version | @ngx-translate/core |
---|---|
16+ | 15.x |
13+ (Ivy only) | 14.x |
10-13 | 13.x |
8-9 | 12.x |
7 | 11.x |
Then modify your angular.json
file with the following Styles and Scripts:
Note: The Scripts
section includes every single controls/plugins, however if you wish to exclude some of them since you might never use some functionalities then just don't include them (for example if you never want to use the column picker, then just delete the slick.columnpicker.js
file from the Scripts
list).
Note 2: Flatpickr is used by the date inline editor. If you are not planning to use it, but it's rarely the case, you can skip including flatpickr.css
in your styles
.
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css", // optional, install when you use Bootstrap
"node_modules/font-awesome/css/font-awesome.min.css", // optional, install when you use Font-Awesome
"node_modules/flatpickr/dist/flatpickr.css",
"styles.css"
],
"scripts": [
"node_modules/sortablejs/Sortable.min.js" // REQUIRED in Angular-Slickgrid 5.x and higher
"node_modules/bootstrap/dist/js/bootstrap.js", // optional, install when you use Bootstrap
],
You need to change your tsconfig.app.json
file to include jszip
path (only required if you use the optional Slickgrid-Universal Excel-Export package) by adding the following lines. If you forget to do this then your Angular Build will fail with a jszip
error or Sortable
error due to default exports that cannot be found. JSZip is used by the Excel Export to compress the data before downloading it and if you use it then the build seems to have problems finding the correct path of jszip unless we tell it where to find it.
"compilerOptions": {
// ...
"allowSyntheticDefaultImports": true,
"paths": {
"jszip": ["../node_modules/jszip/dist/jszip.min.js"]
}
},
Load the default Bootstrap theme style and/or customize it to your taste (either by using SASS or CSS variables)
Default compiled css
(if you use the plain Bootstrap Theme CSS, you could simply add it to your .angular-cli.json
file and be done with it).
Note: If you are also using Bootstrap-SASS
, then there is no need to include the bootstrap.css
in the styles: []
section.
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.css",
"node_modules/font-awesome/css/font-awesome.css",
"styles.css",
"node_modules/@slickgrid-universal/common/dist/styles/css/slickgrid-theme-bootstrap.css"
],
You could also compile the SASS files with your own customization, for that simply take any of the _variables.scss (without the !default
flag) variable file and make sure to import the Bootstrap Theme afterward. For example, you could modify your style.scss
with the following changes:
/* for example, let's change the mouse hover color */
$cell-odd-background-color: lightyellow;
$row-mouse-hover-color: lightgreen;
/* make sure to add the @import the SlickGrid Bootstrap Theme AFTER the variables changes */
@import '@slickgrid-universal/common/dist/styles/sass/slickgrid-theme-bootstrap.scss';
Include AngularSlickgridModule
in your App Module (app.module.ts)
Note
Make sure to add the forRoot
since it will throw an error in the console when not provided.
import { AngularSlickgridModule } from 'angular-slickgrid';
@NgModule({
declarations: [AppComponent],
imports: [ AngularSlickgridModule.forRoot() ], // forRoot() is required, it won't work without it
bootstrap: [AppComponent]
})
export class AppModule { }
The new updated version of ng-packagr
use strict metadata and you might get errors about Lambda not supported
, to bypass this problem you can add the @dynamic
comment over the @NgModule
as shown below:
// @dynamic
@NgModule({
...
})
If you don't want to use any Translate Service and use only 1 Locale then take a look at this demo
To provide locales other than English (default locale), you have 2 options that you can go with. If you only use English, there is nothing to do (you can still change some of the texts in the grid via option 1.)
- Using Custom Locale, that is when you use only 1 locale (other thank English)... this is a new feature starting from version
2.10.0
and up. - Using Localization with I18N, that is when you want to use multiple locales dynamically.
-
NOTE you still need to install
@ngx-translate
(since it is a peer dependency) but it should be removed after doing a production build since it's optional.
Also note that every time you want to use a translation key, you simply have to use a property with the Key
suffix. For example if you wish to have a column definition name
with a translation, just use the nameKey: 'TRANSLATE_KEY'
instead of name
. Below is a list of keys that can be used in the lib
without Translate | with Translate |
---|---|
name | nameKey |
label | labelKey |
title | titleKey |
columnGroup | columnGroupKey |
optionTitle | optionTitleKey |
If you use multiple locale, you will also need to define which Flatpickr Locale to import, for more info on how to do that then take a look at the Flatpickr Localization Wiki
And finally, you are now ready to use it in your project, for example let's create both html/ts files for a grid-basic.component
example, configure the Column Definitions, Grid Options and pass a Dataset to the grid:
import { Column, GridOption } from 'angular-slickgrid';
export class GridBasicComponent {
columnDefinitions: Column[] = [];
gridOptions: GridOption = {};
dataset: any[] = [];
constructor() {
this.prepareGrid();
}
prepareGrid() {
this.columnDefinitions = [
{ id: 'title', name: 'Title', field: 'title', sortable: true },
{ id: 'duration', name: 'Duration (days)', field: 'duration', sortable: true },
{ id: '%', name: '% Complete', field: 'percentComplete', sortable: true },
{ id: 'start', name: 'Start', field: 'start' },
{ id: 'finish', name: 'Finish', field: 'finish' },
];
this.gridOptions = {
enableAutoResize: true,
enableSorting: true
};
// fill the dataset with your data (or read it from the DB)
this.dataset = [
{ id: 0, title: 'Task 1', duration: 45, percentComplete: 5, start: '2001-01-01', finish: '2001-01-31' },
{ id: 1, title: 'Task 2', duration: 33, percentComplete: 34, start: '2001-01-11', finish: '2001-02-04' },
];
}
}
define Angular-Slickgrid in your View
<div class="container">
<angular-slickgrid gridId="grid1"
[columnDefinitions]="columnDefinitions"
[gridOptions]="gridOptions"
[dataset]="dataset">
</angular-slickgrid>
</div>
The last step is really to explore all the pages that are available in this Wiki, all the documentation will be place in here and so you should visit it often. For example a good starter is to look at the following
- all the
Grid Options
you can take a look at, Wiki - Grid Options - Formatters
- Editors
- Filters
- Grid Menu ... and much more, just explorer the Wikis through the sidebar index (on your right)
You might notice that all demos are made with mocked dataset that are embedded in each examples, that is mainly for demo purposes, but you might be wondering how to connect this with an HttpClient
? Easy... just replace the mocked data, assigned to the dataset
property, by your HttpClient
call and that's it. The dataset
property can be changed at any time, which is why you can use local data and/or connect it to a Promise
or an Observable
with HttpClient
(internally it's just a SETTER that refreshes the grid). See Example 24 for a demo showing how to load a JSON file with HttpClient
.
The best way to get started is to clone the Angular-Slickgrid-demos, it has multiple examples and it is also updated frequently since it is used for the GitHub Bootstrap 4 demo page. Angular-Slickgrid
has 3 Bootstrap
repos, you can see a demo of each ones below.
-
Bootstrap 4 demo / examples repo (using
ngx-translate
)-
Bootstrap 4 - examples repo (single Locale, without using
ngx-translate
)
-
Bootstrap 4 - examples repo (single Locale, without using
- Bootstrap 5 demo / examples repo
Like to see the code to a particular Example? Just click on the "see code" that is available in every live examples.
What if Angular-Slickgrid
is missing feature(s) versus the original SlickGrid
? Fear not and directly use the SlickGrid
and DataView
objects that are expose from the start through Custom Events. For more info continue reading on Wiki - SlickGrid & DataView objects and Wiki - Grid & DataView Events
You might also get warnings about SlickGrid while doing a production build, most of them are fine and the best way to fix them, is to simply remove/ignore the warnings, all you have to do is to add a file named ngcc.config.js
(for Angular 8 to 15) in your project root (same location as the angular.json
file) with the following content (you can also see this commit which fixes the Angular-Slickgrid-Demos prod build):
// for Angular 8 to 15 (removed in Angular 16)
module.exports = {
packages: {
'angular-slickgrid': {
ignorableDeepImportMatchers: [
/slickgrid\//,
/flatpickr/,
]
},
}
};
You should also add Angular-Slickgrid
and any dependency that Angular shows a CommonJS warning, add them as allowed CommonJS dependencies to your angular.json
file to silence these warnings.
"options": {
"allowedCommonJsDependencies": [
"autocompleter",
"dompurify",
"excel-builder-webpacker",
"flatpickr",
"slickgrid",
"stream"
],
}
Since Angular 12 switched to WebPack 5, you might get some new errors and you will need to add some polyfills manually to get the Excel Builder (Excel Export) to work.
BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.
npm install stream-browserify
- Add a path mapping in
tsconfig.app.json
:
{
...
"compilerOptions": {
"paths": {
"stream": [ "./node_modules/stream-browserify" ]
},
- Add
stream
(and any other CJS deps) toallowedCommonJsDependencies
inangular.json
:
"options": {
"allowedCommonJsDependencies": [
"autocompleter",
"dompurify",
"excel-builder-webpacker",
"fetch-jsonp",
"flatpickr",
"slickgrid",
"stream"
],
],
... and that should cover it, now let's code!
Contents
- Angular-Slickgrid Wiki
- Installation
- Styling
- Interfaces/Models
- Testing Patterns
- Column Functionalities
- Global Grid Options
- Localization
- Events
- Grid Functionalities
- Auto-Resize / Resizer Service
- Resize by Cell Content
- Composite Editor
- Context Menu
- Custom Tooltip
- Add/Delete/Update or Highlight item
- Dynamically Change Row CSS Classes
- Excel Copy Buffer
- Export to Excel
- Export to File (CSV/Txt)
- Grid State & Presets
- Grouping & Aggregators
- Row Detail
- SlickGrid Controls
- SlickGrid Plugins
- Pinning (frozen) of Columns/Rows
- Tree Data Grid
- SlickGrid & DataView objects
- Addons (controls/plugins)
- Backend Services