我正在研究 icefaces ACE 组件,目前我正在使用 ace:datatable。我正在使用下面的代码
<ace:dataTable var="invoice" value="#{applicationBean.invoices}"
id="dataTableId" rows="10" paginator="true" height="350" paginatorPosition="bottom" page="1"
selectionMode="multiple" emptyMessage="There are no search results"
pageCount="4" currentPageReportTemplate="Showing {startRecord}-{endRecord} out of {totalRecords}"
我可以看到我桌子上的数据。我的问题是假设桌子上有 10 行,如果我选择第 2 行并按下 shift 键并选择第 5 行,那么它应该选择 2 到 5 行 ....但它在我的情况下不起作用。我是否需要添加任何表属性或任何其他替代组件或我需要为此编写的任何 javascript 请建议我..
谢谢,