Sapui5 在SmartTable中选择多行

Sapui5 在SmartTable中选择多行,sapui5,Sapui5,我找不到任何有助于在智能表格中多选择行的属性 我用过简单的桌子。在那里,属性mode=“MultiSelect”解决了此问题,但在SmartTable中,这不起作用 请向我推荐一个可用于在智能表格中选择多行的属性 如果您想使用multi-select,可以在smarttable中集成一个sap.m.表格: <smartTable:SmartTable id="tableplant" smartFilterId="smartFilterBar" tableType="ResponsiveTa

我找不到任何有助于在
智能表格
中多选择行的属性

我用过简单的桌子。在那里,属性
mode=“MultiSelect”
解决了此问题,但在
SmartTable
中,这不起作用

请向我推荐一个可用于在
智能表格中选择多行的属性


如果您想使用multi-select,可以在smarttable中集成一个sap.m.表格:

<smartTable:SmartTable id="tableplant" smartFilterId="smartFilterBar" tableType="ResponsiveTable" editable="false" entitySet="PLANT"
      initiallyVisibleFields="PLANTID,PTYPE,DESCRIPTION,TYPE,STATUS,ASSIGNED,ATTACHMENT" useVariantManagement="false"  demandPopin="true" 
      useTablePersonalisation="true" header="Products" showRowCount="true" useExportToExcel="false" enableAutoBinding="true">

<!--  Table integration -->
    <Table mode="MultiSelect" growingThreshold="100" growing="true" 
     growingScrollToLoad="true">
        <columns>
        ...
        </columns>
        <items>
        ...
        </items>
     </Table>
<!--  EndTable integration -->

</smartTable:SmartTable>

...
...