@eqproject/eqp-dynamic-module 2.8.27 → 2.8.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1998,6 +1998,10 @@ class HListFormRecordComponent {
1998
1998
  GlobalService.debugLog('list-form-record - createColumnsFromFormFields', this.form);
1999
1999
  var fieldsForColumns;
2000
2000
  fieldsForColumns = this.form.Fields.filter((f) => {
2001
+ //nascondere campi etichetta
2002
+ if (f.FieldType == FieldTypeEnum["Etichetta"]) {
2003
+ return false;
2004
+ }
2001
2005
  if (f.AnswerStyle) {
2002
2006
  return f.AnswerStyle.InListView;
2003
2007
  }