我找不到分别在单选按钮上自定义属性的机会,因为我想插入title
标记和data-toggle="tooltip"
以在每个单选按钮上显示工具提示
$builder
->add('type', 'choice', array(
'choices' => array(
'0' => 'Demande', // Here personnalise attr
'1' => 'Recherche', // Here personnalise attr
),
'expanded' => true,
))
谢谢!