3

我使用CraueFormFlowBundle创建了一个多页表单创建了一个多页表单。使用这个表单,我可以创建一个新的实体对象或编辑一个现有的。

然后我添加了设置

protected $allowDynamicStepNavigation = true;

允许在表单的页面中来回导航,但是当使用表单编辑现有对象时,我希望能够直接跳转到表单中的任何页面。这似乎不起作用 - 对象数据已加载,我可以反复按下一步,直到到达所需的页面。
有没有办法在使用 CraueFormFlowBundle 编辑时呈现页面导航?

我的模板包括:

{% include 'CraueFormFlowBundle:FormFlow:stepList.html.twig' %} 

创建导航。这是编辑操作:

    public function editDriverAction($id) {

    $em = $this->getDoctrine()->getManager();

    $formData = $em->getRepository('NewgtDriverBundle:NewgtDriver')->find($id);

    if (!$formData) {
        throw $this->createNotFoundException('Unable to find Driver.');
    }

    //$formData = new NewgtDriver(); // Your form data class. Has to be an object, won't work properly with an array.

    $flow = $this->get('newgtDriver.form.flow.createDriver'); // must match the flow's service id
    $flow->bind($formData);

    // form of the current step
    $form = $flow->createForm();
    if ($flow->isValid($form)) {
        $flow->saveCurrentStepData($form);

        if ($flow->nextStep()) {
            // form for the next step
            $form = $flow->createForm();
        } else {
            // flow finished
            $em = $this->getDoctrine()->getManager();
            $em->persist($formData);
            $em->flush();

            $flow->reset(); // remove step data from the session

            return $this->redirect($this->generateUrl('driver')); // redirect when done
        }
    }

    return $this->render('NewgtDriverBundle:Driver:new.html.twig', array(
        'form' => $form->createView(),
        'flow' => $flow,
    ));
}
4

1 回答 1

1

在源代码中,我们看到流类必须重写方法 loadStepDescriptions。

我的 FromFlow 类是这样的:


namespace MyBundle\Form\Proposal;

use Craue\FormFlowBundle\Form\FormFlow;

class ProposalFlow extends FormFlow {

    protected $maxSteps = 5;

    protected $allowDynamicStepNavigation = true;

    protected function loadStepDescriptions() {
        return array(
            'Name',
            'Contract',
            'Filter',
            'Alternative',
            'Summary',
        );
    }
}

希望这有帮助

于 2014-09-24T04:22:40.737 回答