gpt4 book ai didi

twitter-bootstrap - 连续两个按钮(Symfony2 的 Bootstrap 表单主题)

转载 作者:行者123 更新时间:2023-12-04 22:59:05 25 4
gpt4 key购买 nike

我正在使用 the Bootstrap form theme for Symfony2 (bootstrap_3_ 水平 _layout.html.twig):

我在表单上添加了两个按钮:

$builder
// some code here ...
->add('save', 'submit', ['label' => 'save'])
->add('cancel', 'submit', ['label' => 'cancel']);

它们以这种方式呈现:
enter image description here

我需要它们位于同一行:
enter image description here

如何实现?

最佳答案



Symfony Best Practises: Add buttons in the templates, not in the form classes or the controllers.



例如。:
{{ form_start(form) }}
{{ form_widget(form) }}

<div class="row">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" value="save" class="btn btn-primary">save</button>
<button type="submit" value="cancel" class="btn btn-default">cancel</button>
</div>
</div>
{{ form_end(form) }}

关于twitter-bootstrap - 连续两个按钮(Symfony2 的 Bootstrap 表单主题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31850684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com