-
-
Notifications
You must be signed in to change notification settings - Fork 19
Migration from 1.x to 2.x
Migration Changes Guide from version 1.x to 2.x
- Aurelia-Slickgrid Services are no longer Singleton and are no longer available as Dependency Injection (DI) anymore, they are instead available in the Aurelia Grid Instance that can be obtained with the
asg-on-aurelia-grid-createddelegatebinding (see below)- this is the biggest change, so please make sure to review the code sample below
-
delegatebindingasg-on-grid-createdandasg-on-dataview-createdstill exists but it is now much easier to get the Slick Grid & DataView objects directly from theasg-on-aurelia-grid-createddelegatebinding (it's an all in 1 binding that includes Slick objects and Aurelia-Slickgrid Services) -
delegatebindingasg-on-grid-state-service-changedrenamed toasg-on-grid-state-changed -
GridExtraUtilno longer exist, it was containing only 1 functiongetColumnDefinitionAndData()that got moved into theGridServiceand renamed togetColumnFromEventArguments
- all the Editors options were previously passed through the generic
paramsproperty. To bring more TypeScript Types, all of these options got moved into theeditoroptions (see below)
- For consistencies, all Grid Menu
showXflags were renamed tohideXto align with some of the SlickGridhideX(see below) -
exportWithFormatteris no longer available directly in the Grid Options, it is now underexportOptionsGrid Options (see below) -
i18nis now a Grid Options which is easier to deal with instead of using the genericparams(see below)
- the Grid Option
editoris now a complex object with the same structure as thefilterGrid Option. This also mean that all the arguments that were previously passed to the genericparamsare now passed in theeditor- this also brings TypeScript types and intellisense to
collection,collectionFilterByandcollectionSortBy
- this also brings TypeScript types and intellisense to
- along with previous paragraph,
Editorsimport is no longer available, it's been replaced byEditorTypewhich you need pass to youreditordefinition. - Custom Editor is now also supported
- see code change below
- Select Filter (
FilterType.select) withselectOptionsgot renamed tocollection(see below) - previously we had
searchTerms(array) andsearchTerm(singular), but the lattersearchTermwas dropped in favor of using onlysearchTermsto remove duplicate logic code (see below).
- For
BackendServiceApi, theserviceproperty now as to contain anewinstance of the Backend Service that you want to use (GraphqlServiceorGridOdataService). See explanation below - All 3
onXservice methods were renamed toprocessOnXto remove confusion withonXEvent Emitters with the same names. (see below)- this will probably not concern you, unless you built your own custom Backend Service API
-
BackendServicemethodinitOptionsgot removed and replaced byinitwhich has a different argument signature
- removed
onBackendEventApiwhich was replaced bybackendServiceApi - removed Select Filter
selectOptions, replaced bycollection - removed
FormElementTypewhich was replaced byFilterType - removed
initOptionsfunction frombackendServiceApi, which was replaced byinitwith a different signature
This new instance will contain all the Aurelia-Slickgrid Services (that were previously available as DI). As you can see below, you simply need to remove all DI and get a reference of the service you want through the AureliaGridInstance
Note:
-
GridExtraServiceis now exported asGridService -
GroupingAndColspanServiceis now exported asGroupingService -
ControlAndPluginServiceis now exported asPluginService
export interface AureliaGridInstance {
backendService?: BackendService;
pluginService: ControlAndPluginService;
exportService: ExportService;
filterService: FilterService;
gridService: GridService;
gridEventService: GridEventService;
gridStateService: GridStateService;
groupingService: GroupingAndColspanService;
resizerService: ResizerService;
sortService: SortService;
}export class MyGridDemo implements OnInit {
+ aureliaGrid: AureliaGridInstance;
columnDefinitions: Column[];
gridOptions: GridOption;
dataset: any[];
- constructor(private GridExtraService) {}
addNewItem() {
const newItem = {
id: newId,
title: 'Task ' + newId,
effortDriven: true,
// ...
};
- this.gridExtraService.addItemToDatagrid(newItem);
+ this.aureliaGrid.gridService.addItemToDatagrid(newItem);
}export class MyGrid {
- constructor(private graphqlService: GraphqlService, private i18n: I18N) {
+ constructor(private i18n: I18N) {
}
this.gridOptions = {
backendServiceApi: {
- service: this.graphqlService,
+ service: new GraphqlService(),
preProcess: () => this.displaySpinner(true),
process: (query) => this.getCustomerApiCall(query),
postProcess: (result: GraphqlResult) => this.displaySpinner(false)
},
params: {
i18: this.translate
}
};Previously available directly in the grid options but is now accessible only from the exportOptions property
this.gridOptions = {
- exportWithFormatter: true
exportOptions: {
+ exportWithFormatter: false,
}
};this.gridOptions = {
enableTranslate: true,
- params: {
- i18n: this.translate
- },
+ i18n: this.translate,
};-import { Column, Editors, FieldType, Formatters, GridOption } from 'aurelia-slickgrid';
+import { Column, EditorType, FieldType, Formatters, GridOption } from 'aurelia-slickgrid';
this.columnDefinitions = [
{
id: 'title', name: 'Title', field: 'title',
type: FieldType.string,
- editor: Editors.longText,
+ editor: {
+ type: EditorType.longText
+ },
},
{
id: 'title2', name: 'Title, Custom Editor', field: 'title',
type: FieldType.string,
+ editor: {
// new CUSTOM EDITOR type added
+ type: EditorType.custom,
+ customEditor: CustomInputEditor
+ },
},
{
id: 'prerequisites', name: 'Prerequisites', field: 'prerequisites',
type: FieldType.string,
- editor: Editors.multipleSelect,
+ editor: {
+ type: EditorType.multipleSelect,
+ collection: Array.from(Array(12).keys()).map(k => ({ value: `Task ${k}`, label: `Task ${k}` })),
+ collectionSortBy: {
+ property: 'label',
+ sortDesc: true
+ },
+ collectionFilterBy: {
+ property: 'label',
+ value: 'Task 2'
+ }
+ },
- params: {
- collection: Array.from(Array(12).keys()).map(k => ({ value: `Task ${k}`, label: `Task ${k}` })),
- collectionSortBy: {
- property: 'label',
- sortDesc: true
- },
- collectionFilterBy: {
- property: 'label',
- value: 'Task 2'
- }
- }
}
];This was already renamed long time ago but was still available. It is now removed, if you have any references simply change selectOptions to collection
// column definitions
this.columnDefinitions = [
{
id: 'isActive', name: 'Is Active', field: 'isActive',
type: FieldType.boolean,
filterable: true,
filter: {
- selectOptions: [ { value: '', label: '' }, { value: true, label: 'true' }, { value: false, label: 'false' } ],
+ collection: [ { value: '', label: '' }, { value: true, label: 'true' }, { value: false, label: 'false' } ],
type: FilterType.multipleSelect,
searchTerms: [], // default selection
}
}
];If you used the singular searchTerm in your project, simply change it to an array of searchTerms, for example
// column definitions
this.columnDefinitions = [
{
id: 'isActive', name: 'Is Active', field: 'isActive',
type: FieldType.boolean,
filterable: true,
filter: {
collection: [ { value: '', label: '' }, { value: true, label: 'true' }, { value: false, label: 'false' } ],
type: FilterType.multipleSelect,
- searchTerm: true, // default selection
+ searchTerms: [true], // default selection
}
}
];Since these flags are now inverse, please do not forget to also inverse your boolean value. Here is the entire list
-
showClearAllFiltersCommandrenamed tohideClearAllFiltersCommand -
showClearAllSortingCommandrenamed tohideClearAllSortingCommand -
showExportCsvCommandrenamed tohideExportCsvCommand -
showExportTextDelimitedCommandrenamed tohideExportTextDelimitedCommand -
showRefreshDatasetCommandrenamed tohideRefreshDatasetCommand -
showToggleFilterCommandrenamed tohideToggleFilterCommand
Here is the entire list
-
onFilterChangedwas renamed toprocessOnFilterChanged -
onPaginationChangedwas renamed toprocessOnPaginationChanged -
onSortChangedwas renamed toprocessOnSortChanged
Contents
- Aurelia-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
- Add/Delete/Update or Highlight item
- Dynamically Change Row CSS Classes
- Column Picker
- Composite Editor Modal
- Context Menu
- Custom Tooltip
- Excel Copy Buffer
- Export to Excel
- Export to File (CSV/Txt)
- Grid Menu
- Grid State & Presets
- Grouping & Aggregators
- Header Menu & Header Buttons
- Header Title Grouping
- Pinning (frozen) of Columns/Rows
- Row Colspan
- Row Detail
- Row Selection
- Tree Data Grid
- SlickGrid & DataView objects
- Addons (controls/plugins)
- Backend Services