From 7a1d2dc0cd1e57e9ba00e48c89e56ab01df8811e Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Tue, 8 Jul 2014 03:37:47 +0000 Subject: [PATCH] Customfield lists need to create all widgets, so they can be enabled if the column is changed without re-doing the whole thing --- etemplate/js/et2_extension_customfields.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/et2_extension_customfields.js b/etemplate/js/et2_extension_customfields.js index c8bfb92b88..486b59bb03 100644 --- a/etemplate/js/et2_extension_customfields.js +++ b/etemplate/js/et2_extension_customfields.js @@ -167,7 +167,7 @@ var et2_customfields_list = et2_valueWidget.extend([et2_IDetachedDOM, et2_IInput for(var field_name in this.options.customfields) { // Skip fields if we're filtering - if(!jQuery.isEmptyObject(this.options.fields) && !this.options.fields[field_name]) continue; + if(this._type != 'customfields-list' && !jQuery.isEmptyObject(this.options.fields) && !this.options.fields[field_name]) continue; var field = this.options.customfields[field_name];