tags:

views:

18

answers:

1

Hi,

using generator.yml, is there any way to hide the fields of the i18n forms in the admin?

Javi

A: 

In the form object try the useFields method

$this->useFields(array("field", "names", "you", "want", "to", "edit"));

In generator.yml

In the form section, or the fields/edit/new section. (Take your pick)

display: [field, names, you, want, to, edit]
johnwards