我在我的symfony2应用程序中使用https://github.com/stwe/DatatablesBundle。它仍然是马车,但效果很好。现在我想在我的表中我有id,id为id。我想添加复选框,以便我可以通过他们的ID选择它们。我已经搜索得足够多但无法找到任何解决方案。任何人都可以帮助我如何将复选框添加到列ID作为选择?
一件事:我的服务器端':false。
$this->columnBuilder
->add("id", "column", array("title" => "Id","type" => "checkbox",))
->add("name", "column", array("title" => "Name",))
这是我生成列的代码。
答案 0 :(得分:0)
->add(null, "multiselect", array(
"attributes" => array(
"name" => "check", ),
"actions" => array(
array(
"route" => "artist_show",
"route_parameters" => array(
"id" => "id"
),
"label" => "Select",
)
)))
添加多选选项解决了复选框的必要性