Slick Grid/DataView Objects
Last updated
Last updated
index
In some cases you might want a feature that is not yet available in slickgrid-vue
but exists in the original SlickGrid
, what should you do? Fear not, we got you covered. slickgrid-vue
exposes the SlickGrid Grid
and DataView
objects through Event Aggregators, these objects are created when slickgrid-vue initialize the grid (with defineGrid()
). 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 SlickgridVueInstance
via the instances
bindable as shown
vueGridCreated
Since version 2.x
, we can now access the Slick Grid
& DataView
objects directly from the SlickgridVueInstance
through the onvueGridCreated
Event Dispatch, for example:
Component
instances
bindableYou could also get all the Service instances via the new instances
bindable property
Component
You have access to all original SlickGrid events which you can subscribe, for more info refer to the
There's already all the necessary information on how to use this on the page, so I suggest you to head over to that Wiki page on how to use the SlickGrid
and DataView
objects