我在开发中使用CraueFormFlowBundle,并且我正在使用 Fuelux Wizard 2来渲染我的向导。stepList_content.html.twig
我已经设法通过覆盖我的目录上的模板来更改在 CraueFormFlowBundle 中绘制选项卡的方式,app/Resources
但找不到对表单内容本身执行相同操作的方法。Wizard 组件的想法是在单独的 div 上绘制每个步骤,例如:
<div class="step-content">
<div class="step-pane" data-step="1">
// first step goes here
</div>
<div class="step-pane sample-pane " data-step="2">
// second step goes here
</div>
<div class="step-pane sample-pane" data-step="3">
// third step goes here and so on
</div>
</div>
我怎样才能得到这个工作?这是可能的?