In some cases you might want a feature that is not yet available in Aurelia-Slickgrid but exists in the original SlickGrid, what should you do? Fear not, we got you covered. Aurelia-Slickgrid exposes the SlickGrid Grid and DataView objects through Event Aggregators, these objects are created when Aurelia-Slickgrid initialize the grid (with attached()). So if you subscribe to the Event Aggregator, you will get the SlickGrid and DataView objects and from there you can call any of the SlickGrid features.
The preferred way is now to use the AureliaGridInstance via the instances bindable as shown here
Grid & DataView objects through AureliaGridCreated
Since version 2.x, we can now access the Slick Grid & DataView objects directly from the AureliaGridInstance through the on-aurelia-grid-created Event Dispatch, for example:
You have access to all original SlickGrid events which you can subscribe, for more info refer to the Wiki - Grid & DataView Events
Usage
There's already all the necessary information on how to use this on the Wiki - Grid & DataView Events page, so I suggest you to head over to that Wiki page on how to use the SlickGrid and DataView objects