I currently use due to meet this challenge. Eg. ``` php $builder->addEventListener(FormEvents::POST_SET_DATA, function(FormEvent $event) { $data = $event->getData(); $form = $event->getForm(); $formDisponibility = $form->get("disponibility"); $choiceListOption = $form->get("disponibility")->getConfig()->getOption("choice_list"); $choices = $choiceListOption->getChoices(); $views = $choiceListOption->getRemainingViews(); foreach($choices as $key => $choice) { $view = $views[$key]; $view->attr = array("data-day" => $choice->getDay()); } }); ```