在SmartTable中选择多行

问题描述 投票:0回答:1

我无法找到任何有助于在qazxsw poi中多选行的属性。

我使用过简单的表格。在那里SmartTable属性解决了这个问题,但在mode="MultiSelect"这不起作用。

请建议我一个可用于在SmartTable中选择多行的属性

SmartTable
sapui5
1个回答
1
投票

如果你想使用多项选择,你可以在你的smarttable中集成一个sap.m.Table:

<mvc:View xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc" controllerName="Workspace.controller.SmartField"
xmlns:smartFilterBar="sap.ui.comp.smartfilterbar" xmlns:smartTable="sap.ui.comp.smarttable">
    <smartFilterBar:SmartFilterBar id="smartFilterBar" entitySet="PLANT" persistencyKey="SmartFilter_Explored">
        <smartFilterBar:controlConfiguration>
            <smartFilterBar:ControlConfiguration key="PLANTID" visibleInAdvancedArea="true" preventInitialDataFetchInValueHelpDialog="false"> </smartFilterBar:ControlConfiguration>
            <smartFilterBar:ControlConfiguration key="STATUS" visibleInAdvancedArea="true" preventInitialDataFetchInValueHelpDialog="false"> </smartFilterBar:ControlConfiguration>
        </smartFilterBar:controlConfiguration>
    </smartFilterBar:SmartFilterBar>
    <OverflowToolbar design="Transparent">
        <ToolbarSpacer/>
        <OverflowToolbarButton icon="sap-icon://add"  text="Add" press="AddRow"/>
        <OverflowToolbarButton icon="sap-icon://delete" text="Delete" press="Delete"/>
        <OverflowToolbarButton icon="sap-icon://drop-down-list" text="Filter"/>
    </OverflowToolbar>
    <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"></smartTable:SmartTable>
</mvc:View>
© www.soinside.com 2019 - 2024. All rights reserved.