如何为 symfony2 添加复选框到 stwe/DatatablesBundle
How to add checkbox to stwe/DatatablesBundle for symfony2
我正在为我的 symfony2 应用程序使用 https://github.com/stwe/DatatablesBundle。它仍然有问题,但效果很好。现在我想在我的 table 我有 id,name 为 id。我想添加复选框,以便我可以通过他们的 ID select 他们。我已经搜索够了,但找不到任何解决方案。任何人都可以帮助我如何将复选框添加到列 id select?
一件事:我的'serverSide':假的。
$this->columnBuilder
->add("id", "column", array("title" => "Id","type" => "checkbox",))
->add("name", "column", array("title" => "Name",))
这是我生成列的代码。
好的,我找到了解决方案,我不确定这是否是解决问题的最佳方法,但我仍然可以解决我的问题。
->add(null, "multiselect", array(
"attributes" => array(
"name" => "check", ),
"actions" => array(
array(
"route" => "artist_show",
"route_parameters" => array(
"id" => "id"
),
"label" => "Select",
)
)))
添加 multi select 选项解决了复选框的必要性
我正在为我的 symfony2 应用程序使用 https://github.com/stwe/DatatablesBundle。它仍然有问题,但效果很好。现在我想在我的 table 我有 id,name 为 id。我想添加复选框,以便我可以通过他们的 ID select 他们。我已经搜索够了,但找不到任何解决方案。任何人都可以帮助我如何将复选框添加到列 id select?
一件事:我的'serverSide':假的。
$this->columnBuilder
->add("id", "column", array("title" => "Id","type" => "checkbox",))
->add("name", "column", array("title" => "Name",))
这是我生成列的代码。
好的,我找到了解决方案,我不确定这是否是解决问题的最佳方法,但我仍然可以解决我的问题。
->add(null, "multiselect", array(
"attributes" => array(
"name" => "check", ),
"actions" => array(
array(
"route" => "artist_show",
"route_parameters" => array(
"id" => "id"
),
"label" => "Select",
)
)))
添加 multi select 选项解决了复选框的必要性