Added style support to pagination so you can apply styling to all elements under the pagination.
This commit is contained in:
parent
4f215dd375
commit
9fa7f4b054
@ -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);
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user