From 8a1794c73e46751ac58679d211dca4a889012a6a Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 24 May 2016 10:05:03 +0300 Subject: [PATCH] [SSE] fix Bug 32470 --- apps/spreadsheeteditor/main/app/view/TableSettings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/TableSettings.js b/apps/spreadsheeteditor/main/app/view/TableSettings.js index f9317d0219..ea051baa98 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettings.js @@ -328,8 +328,8 @@ define([ this.chFilter.setValue(value, true); this._state.CheckFilter=value; } - if (this.chFilter.isDisabled() !== (!this._state.CheckHeader || this._locked)) - this.chFilter.setDisabled(!this._state.CheckHeader || this._locked); + if (this.chFilter.isDisabled() !== (!this._state.CheckHeader || this._locked || value===null)) + this.chFilter.setDisabled(!this._state.CheckHeader || this._locked || value===null); if (needTablePictures) this.onApiInitTableTemplates(this.api.asc_getTablePictures(props));