Sapui5 sap.m.表格选择不带单选按钮的单选模式

Sapui5 sap.m.表格选择不带单选按钮的单选模式,sapui5,Sapui5,当我们设置mode=“SingleSelect”时,将显示单选按钮。如何隐藏每行的单选按钮 首先结帐。其次,这是您的代码: <Table id="idDetailTable" items="{tabledata>/Items}" height="100%" growing="true" selectionChange="vendorSelect" includeItemInSelection="tru

当我们设置
mode=“SingleSelect”
时,将显示单选按钮。如何隐藏每行的单选按钮


首先结帐。其次,这是您的代码:

<Table id="idDetailTable"  
       items="{tabledata>/Items}" 
       height="100%" 
       growing="true" 
       selectionChange="vendorSelect" 
       includeItemInSelection="true"   
       mode="SingleSelectMaster" 
       modeAnimationOn="false">

查看更多详细信息

顺便说一句:任何UI5枚举的字符串值都等于其命名空间的最后一部分:sap.m.ListMode.SingleSelectMaster->SingleSelectMaster。这就是为什么您可以在XMLView或HTMLView中只使用最后一部分