0
SAPUI5 XML을 사용하여 테이블에 여러 헤더가 있어야합니다.테이블 머리글 그룹화 방법 - SAPUI5 xml
이것은 내가 시도한 것입니다. JsBin
<table:Table title="Real-time order status" noDataText="No data to display" id="tableDisp" enableBusyIndicator="true" showNoData="true" width="auto" class="sapUiResponsiveMargin">
<table:Column id="col6" hAlign="Center" headerSpan="[2,1]">
<table:multiLabels>
<Label text="2 - Batch records handed over to QA" class="tableHeaderWrap"/>
<Label text="Target" textAlign="Center" />
</table:multiLabels>
<table:template>
<Label text="{Target}"/>
</table:template>
</table:Column>
<table:Column id="col10" hAlign="Center">
<table:multiLabels>
<Label text="2 - Batch records handed over to QA" class="tableHeaderWrap"/>
<Label text="Actual" textAlign="Center"/>
</table:multiLabels>
<table:template>
<Label text="{Actual}"/>
</table:template>
</table:Column>