我目前是SapUI5的初学者,想要在 gridview 中显示图片?
任何人都可以帮助解决这个问题
答案 0 :(得分:0)
使用以下代码创建图像,然后将其放置在网格布局中:
var oImage = new sap.ui.commons.Image("image");
oImage.setSrc("source of image");
oImage.setTooltip("tooltip");
oImage.placeAt("grid layout");
答案 1 :(得分:0)
首先创建一个网格布局
var oLayout2 = new sap.ui.commons.form.GridLayout("L2");
然后创建一个图像
和setLayoutData
: