addTextField('listmail', false, true); $email->addInputAddon('emailSign', false, '@'); $email->addInputComponent((new InputText('domain'))->addHtmlAttribute('readonly','true')); $this->addSection($email); $this->addField((new Text('displayName'))); $this->addField(new Textarea('description')); $this->addField((new Select('memberList'))->enableMultiple()); $this->addField((new Tagger('customMember')) ->setPlaceholder(di('lang')->absoluteT('mail@example.com')) ->addValidator(new TaggerEmailValidator()) ); } }