slick-components 17.0.83 → 17.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,7 +23,7 @@ class SlickInitParams {
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
class SlickInitService {
|
|
26
|
-
static { this.version = "17.0.
|
|
26
|
+
static { this.version = "17.0.85"; }
|
|
27
27
|
constructor() { }
|
|
28
28
|
static init(initParams) {
|
|
29
29
|
console.info(`Slick Components Version ${SlickInitService.version}`);
|
|
@@ -6579,6 +6579,10 @@ class SlickGridComponent {
|
|
|
6579
6579
|
this.gridOptions.columns.push(column);
|
|
6580
6580
|
else
|
|
6581
6581
|
this.gridOptions.columns.splice(idx, 0, column);
|
|
6582
|
+
this.templateRefs = {};
|
|
6583
|
+
this.slickGridColumnTemplates.forEach(t => {
|
|
6584
|
+
this.templateRefs[t.columnKey] = t.template;
|
|
6585
|
+
});
|
|
6582
6586
|
this.setGridOptions(this.gridOptions);
|
|
6583
6587
|
}
|
|
6584
6588
|
getRequestModel(requestModel = null) {
|