mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
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:
parent
feb09667ae
commit
035ef0a9c7
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user