为什么我的预览 Window 不显示 FormElement 内容

Why does my Preview Window doesn't show FormElement Content

我正在尝试添加 sap.ui.layout.form.Form with FormContainer and FormElements to a Preview Dialog。但是,我的表单及其元素没有得到呈现。
Click Here:

{
  "Type": "sap.ui.core.mvc.JSONView",
  "content": [
    {
      "Type": "sap.m.Button",
      "id": "testitemid0",
      "text": "MyTestButton",
      "press": "asdf"
    },
    {
      "Type": "sap.ui.layout.form.Form",
      "id": "testitemid1",
      "formContainers": [
        {
          "Type": "sap.ui.layout.form.FormContainer",
          "id": "testitemid2",
          "formElements": [
            {
              "Type": "sap.ui.layout.form.FormElement",
              "id": "testitemid3",
              "label": {
                "Type": "sap.m.Label",
                "id": "testitemid4",
                "text": "My Test Label"
              },
              "fields": [
                {
                  "Type": "sap.m.Input",
                  "id": "testitemid5",
                  "value": "My Test Input",
                  "placeholder": ""
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

知道为什么它不呈现表单吗?

我的 sap.ui.layout.form.Form-元素只是缺少布局:

{
  "Type": "sap.ui.layout.form.Form",
  "id": "testitemid1",
  "layout": {
      "Type": "sap.ui.layout.form.GridLayout"
  },
  ...
}

JSBin