为什么没有展示物品

时间:2017-01-03 09:38:05

标签: sapui5

我创建了一个网格表,这些行绑定到模型:

<table:Table id="terminal-table"
             inset="false"
             rows="{vmTerminals>/aCurrent}"
             class="sapUiSmallMarginTop">
  <table:title>
    <Label text="Terminal"/>
  </table:title>
  <table:columns>
    <table:Column>
      <Label text="Computer"/>
      <table:template>
        <Text text="{Computer}"/>
      </table:template>
    </table:Column>
    <table:Column>
      <Label text="Plant"/>
      <table:template>
        <Text text="{Plant}"/>
      </table:template>
    </table:Column>
    <table:Column>
      <Label text="Work center"/>
      <table:template>
        <Text text="{WorkCenter}"/>
      </table:template>
    </table:Column>
  </table:columns>
</table:Table>

模型的项目如下:
enter image description here

表中没有显示任何项目: enter image description here 但正如您所看到的,该表识别出桌面上的三个项目。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

您需要做什么:在聚合内添加相对绑定的模型名称。

 <Text text="{Computer}"/> 

需要

<Text text="{vmTerminals>Computer}"/>