After I added a form and loaded some data,
$f=$this->add('MVCForm');
$f->setModel('Model')->loadData(1);
$data=$f->getAllData();
the data do show up in the fields of the form, however, the $data is empty. I thought it would be the data array for the fields show up in the form. Did I miss something here?