Commit 837d1742 authored by Alexander.Trofimov's avatar Alexander.Trofimov

update set

parent b210cf1b
......@@ -4523,31 +4523,31 @@ CT_PivotTableStyle.prototype.asc_getShowColStripes = function() {
CT_PivotTableStyle.prototype.asc_setName = function(api, pivot, newVal) {
if (newVal !== this.name) {
var t = this;
api._changePivotStyle(pivot, function() {t._setName()});
api._changePivotStyle(pivot, function() {t._setName(newVal)});
}
};
CT_PivotTableStyle.prototype.asc_setShowRowHeaders = function(api, pivot, newVal) {
if (newVal !== this.showRowHeaders) {
var t = this;
api._changePivotStyle(pivot, function() {t._setShowRowHeaders()});
api._changePivotStyle(pivot, function() {t._setShowRowHeaders(newVal)});
}
};
CT_PivotTableStyle.prototype.asc_setShowColHeaders = function(api, pivot, newVal) {
if (newVal !== this.showColHeaders) {
var t = this;
api._changePivotStyle(pivot, function() {t._setShowColHeaders()});
api._changePivotStyle(pivot, function() {t._setShowColHeaders(newVal)});
}
};
CT_PivotTableStyle.prototype.asc_setShowRowStripes = function(api, pivot, newVal) {
if (newVal !== this.showRowStripes) {
var t = this;
api._changePivotStyle(pivot, function() {t._setShowRowStripes()});
api._changePivotStyle(pivot, function() {t._setShowRowStripes(newVal)});
}
};
CT_PivotTableStyle.prototype.asc_setShowColStripes = function(api, pivot, newVal) {
if (newVal !== this.showColStripes) {
var t = this;
api._changePivotStyle(pivot, function() {t._setShowColStripes()});
api._changePivotStyle(pivot, function() {t._setShowColStripes(newVal)});
}
};
CT_PivotTableStyle.prototype._setName = function(newVal) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment