我创建了一个非常简单的UI5应用程序,其中一个页面带有页脚。但页脚显示在页面顶部。我希望它在页面底部是粘性的。
return new sap.m.Page({
title: "test",
content: oForm1,
footer: new sap.m.Bar({
})
});
我的表单也没有显示,因为表单的高度是零像素,虽然内容在那里。
var oForm1 = new sap.ui.layout.form.Form("F1",{
title: new sap.ui.core.Title({text: "(Un)Loading Checklist"}),
layout: new sap.ui.layout.form.GridLayout(),
formContainers: [
new sap.ui.layout.form.FormContainer("F1C1",{
title: "Person data",
formElements: [
]
})
]
});