Some more adjustments to get disabled attribute into nextmatch unparsed

Fix some nextmatch columns did not show up in column selection
This commit is contained in:
nathangray 2016-06-08 16:56:45 -06:00
parent feb09667ae
commit 035ef0a9c7

View File

@ -800,7 +800,10 @@ var et2_grid = (function(){ "use strict"; return et2_DOMWidget.extend([et2_IDeta
{
if (this.managementArray[i].widget == _sender)
{
vis = !(this.managementArray[i].disabled);
vis = !(typeof this.managementArray[i].disabled === 'boolean' ?
this.managementArray[i].disabled :
this.getArrayMgr("content").parseBoolExpression(this.managementArray[i].disabled)
);
break;
}
}