gpt4 book ai didi

php - Symfony2 带有复选框表单的扩展表

转载 作者:搜寻专家 更新时间:2023-10-31 21:56:03 25 4
gpt4 key购买 nike

我有一个表格,其中包含例如“ID”、“类别”、“名称”和“操作”等信息。现在我想用复选框改进表格,使用户能够选择多行并一步删除它们。

我的问题:我用表单生成器创建了一个表单:

public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('id', 'entity', array(
'required' => false,
'class' => 'AppBundle:Task',
'property' => 'id',
'multiple' => true,
'expanded' => true
))
->add('add', 'submit', array('label' => 'Add'));
}

此表单与包含表格数据的表格一起发送到 twig-html。

{% if table|length > 0 %}
{{ form_start(addForm) }}
{{ form_errors(addForm) }}
<table class='result' border=1>
<th></th>
<th>ID</th>
<th>Category</th>
<th>Name</th>
<th>Action</th>
{% for item in table %}
<tr>
<td>
{% for entity in addForm.id %}
{% if entity.vars.value == item.id %}
{{ form_widget(entity.vars.form) }}
{% endif %}
{% endfor %}
</td>
<td>{{ item.id }}</td>
<td>{{ item.category }}</td>
<td>{{ item.name }}</td>
<td>{{ item.action }}</td>
</tr>
{% endfor %}
</table>

如您所见,我的解决方案必须在 for 循环中搜索表单项的正确 ID 并放置它们。

我现在的问题:我对这个解决方案感到不舒服 - 有没有更简单的方法来显示包含多个列和复选框的表格?

提前致谢

编辑:

还有一个问题是在选中一些复选框后出现以下错误:

Neither the property "id" nor one of the methods "addId()"/"removeId()", "setId()", "id()", "__set()" or "__call()" exist and have public access in class "AppBundle\Entity\XXXXXX".

最佳答案

也许你应该更好地使用 collection form type而不是实体类型,因为您将能够为数据库表的每条记录使用自定义表单和 Twig 模板。在这个explanation您将学习如何删除或添加一行。添加复选框以提供批处理操作将是一个额外的 javascript 解决方案

关于php - Symfony2 带有复选框表单的扩展表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33645718/

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