1

早上好。我在bootsfaces中的代码有问题。我需要我的 DataTable 支持单行选择,但不支持多行选择。但是,我的表总是只使用多项选择。

这是我的代码:

<b:dataTable id="tableExpedients" fixedHeader="true" style="width:100%;"
            pageLength="6" border="false" responsive="true" lang="es"
            searching="true" var="exp" multiColumnSearch="true" paginated="true"
            select="true" value="#{Expedients.getExpedients()}" custom-options="colReorder: true">

我没有得到简单的选择,因为我提到了这些页面:

•<a href="http://showcase.bootsfaces.net/forms/DataTable.jsf" rel="nofollow">http://showcase.bootsfaces.net/forms/DataTable.jsf

•<a href="https://datatables.net/reference/option/" rel="nofollow">https://datatables.net/reference/option/

谢谢大家。

4

1 回答 1

0

我刚刚实现了将行选择限制为单个行的选项。我不完全确定这是否是您报告的错误,但现在这是您的个人功能:)。

我不想改变 BootsFaces 的默认值,又想保持对 PrimeFaces 的兼容性,所以我决定添加一个新属性:selectionMode="single"将 dataTable 切换为单行选择模式,类似于单选按钮。请注意,您仍然必须设置select="true".

新功能将成为 BootsFaces 1.0 的一部分,我们计划在本月底(2016 年 10 月)发布。您可以按照https://github.com/TheCoder4eu/BootsFaces-OSP/issues/369上的说明进行更早的测试。

另请参阅我们的问题跟踪器上的票 531

于 2016-10-25T20:00:15.240 回答