I\'m using Zend framework with Bootstrap and ReverseForm adapter, and have an interesting problem with it: when I use Bootstrap Datepicker in Zend Form I\'ve the next exception:
This works for me. The value convert to date format will solve the issue. In your controller: write:
$users['usrBirthday']=$user->getBirthday()->format('d-m-Y'); $form->setData($users); $form->bind($user);