我正在尝试在easy-admin3中使用输入组,就像我搜索网络一样,我找不到任何想法?
我的问题是是否可以通过从configureFields方法指定配置来添加它,因为“ setFormTypeOption ”用于指定某些属性,而不必为此创建文件file.html.twig
$emailFields = TextField::new('email')->setFormTypeOption("attr.maxlength", 100);
if($pageName==Crud::PAGE_EDIT || $pageName==Crud::PAGE_NEW){
$tagFields
->setFormTypeOption("attr.class", 'check-field')
->setFormTypeOption("attr.style", "text-transform:uppercase")
// something like that
//->setFormTypeOption("attr.input-group", "@example.com")
}