Meteor-Community-Packages / meteor-autoform

AutoForm is a Meteor package that adds UI components and helpers to easily create basic forms with automatic insert and update events, and automatic reactive validation.
MIT License
1.44k stars 328 forks source link

Allow to hide labels of array/object fields by schema #1740

Closed jankapunkt closed 5 months ago

jankapunkt commented 5 months ago

If I define a field, I can hide its label via

{
  type: String,
  autoform: {
    label: false // or null
  }
}

This causes the label to be hidden but still be available in the schema validation error message. However this did not work with fields of type Array or Object and is not possible.