diff --git a/ignite-template.js b/ignite-template.js index 2ba8aa1..e18fd3d 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2745,6 +2745,7 @@ class pagination extends IgniteTemplate { if (this.list) { for (var i = 0; i < this.list.length; i++) { var template = this.forEach(this.list[i]); + template.construct(parent, this.element); var page = parseInt(i / this.pageSize); @@ -2753,7 +2754,7 @@ class pagination extends IgniteTemplate { } else { template.element.style.removeProperty("display"); } - + this.pages[page].push(template.element); this.children.push(template); this.elements.push(template.element); @@ -2922,6 +2923,14 @@ class pagination extends IgniteTemplate { IgniteRendering.leave(); } + + onStyleChanged(name, newValue) { + this.elements.forEach((element) => { + element.style.setProperty(name, newValue, this._styles[name].priority); + }); + + this._styles[name].value = newValue; + } } /**