SAPUI5中的平铺容器绑定

时间:2014-04-16 08:57:11

标签: javascript animation layout tile sapui5

我希望以这样的方式包含tile容器,使其在放入矩阵布局单元格之前被包含在面板中,这样我就可以在click事件上切换动画但是我遇到问题,因为tile容器没有显示tile。启用滚动false已经设置。我还附加了相关的代码。 任何人都可以帮我解决这个问题。

var oTileContainer = new sap.m.TileContainer("idTileContainer", {
  allowAdd : true,
  editable : false,


 });


oTileContainer.bindAggregation("tiles", "/mobile", oProductTile);

var panel=new sap.m.Panel("p1",{content:[oTileContainer ]});

var oMainMatrixLayout=new sap.ui.commons.layout.MatrixLayout("idMainMatrixLayout",{
  widths:['10%','80%','10%'],
  columns :3, 

oMainMatrixLayout.createRow(null,panel,null);

提前致谢

0 个答案:

没有答案