sap.m.Carousel 的循环 属性 是否有效?

Does the loop property of the sap.m.Carousel work?

我正在尝试启用 Carousel 的 loop 功能。 在我看来,我声明 属性:

<Carousel height="auto" loop="true" pages="{ProductCollection}">
  <customLayout>
    <CarouselLayout visiblePagesCount="2" />
  </customLayout>
</Carousel>

似乎不能工作!

这是我的代码示例:https://embed.plnkr.co/zILEH3/

事实证明这是一个错误,它完全向后工作,现在 fixed..

根据我错过的 API 参考中的 notesap.m.Carousel 旨在忽略 循环,如果visiblePagesCount 不是 1.

Note: When this property is set to something different than the default value, the loop property of Carousel is ignored.