SAPui5 Fußzeile nicht am unteren

Machte ich einen sehr einfachen UI5-Anwendung mit einer Seite mit einer Fußzeile. Aber der Fußzeile angezeigt wird am oberen Rand der Seite. Ich erwarte, dass er klebrig an der Unterseite der Seite.

    return new sap.m.Page({
        title: "test",
        content: oForm1,
        footer: new sap.m.Bar({

        })
    });

Auch meine form wird nicht angezeigt, weil die Höhe der form ist null Pixel, obwohl der Inhalt da ist.

    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: [
                ]
            })
        ]
    });

InformationsquelleAutor Anonymoose | 2014-06-20

Schreibe einen Kommentar