Update visible custom fields

This commit is contained in:
Nathan Gray 2012-03-19 19:57:02 +00:00
parent abe44d99c7
commit e567e6d0bf
2 changed files with 3 additions and 2 deletions

View File

@ -256,11 +256,11 @@ var et2_customfields_list = et2_baseWidget.extend([et2_IDetachedDOM], {
{
if(_fields[name])
{
this.rows.show();
jQuery(this.rows[this.prefix+name]).show();
}
else
{
this.rows.hide();
jQuery(this.rows[this.prefix+name]).hide();
}
}
this.options.fields[name] = _fields[name];

View File

@ -652,6 +652,7 @@ var et2_nextmatch = et2_DOMWidget.extend(et2_IResizeable, {
visible[value[j].substring(1)] = true;
i++;
}
self.columns[column].widget.set_visible(visible);
}
column++;
}