Just started diving into AngularJS and it's been an exciting journey so far.
I've come across the suggestion of wrapping external libraries into directories, which definitely seems like a good practice.
While trying to create a 'slickgrid' directive, I noticed a lack of extensive information online. The post linked here is one of the few examples that showcases the use of slickgrid as a directive: Slick Grid wrapped in directive (angular), some options not work (resize and drag&drop columns)
However, I'm curious if that approach is the most suitable. In the referenced post, each <div slickgrid>
initializes with the same settings and data.
In my application, I anticipate multiple instances of slickgrid, where columns and data will vary from one instance to another.
Therefore, how can I associate a specific <div slickgrid>
with the corresponding data it should display?
Thank you for your insights!