我目前是 SapUI5 的初学者,想在gridview中显示图像?
有人可以帮忙吗
首先创建一个网格布局
var oLayout2 = new sap.ui.commons.form.GridLayout("L2");
然后创建一个图像
和setLayoutData
:
使用以下代码创建图像,然后将其放置在网格布局中:
var oImage = new sap.ui.commons.Image("image");
oImage.setSrc("source of image");
oImage.setTooltip("tooltip");
oImage.placeAt("grid layout");