From e6678399d242b27774e3773df05db4923061babc Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 14 Mar 2016 17:19:35 +0000 Subject: [PATCH] When server restores a disabled column, set it back to user's preference instead of just turn it on --- etemplate/js/et2_extension_nextmatch_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/et2_extension_nextmatch_controller.js b/etemplate/js/et2_extension_nextmatch_controller.js index 608eef1a08..58e18b449b 100644 --- a/etemplate/js/et2_extension_nextmatch_controller.js +++ b/etemplate/js/et2_extension_nextmatch_controller.js @@ -593,7 +593,7 @@ var et2_nextmatch_controller = (function(){ "use strict"; return et2_dataview_co .set_visibility( nm.getArrayMgr('content').parseBoolExpression(nm.columns[column_index].disabled) ? ET2_COL_VISIBILITY_DISABLED : - ET2_COL_VISIBILITY_VISIBLE + nm.columns[column_index].visible ); } }