0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Listへの新規アイテム登録画面の書式設定をjsonでいじってみたのでメモ

Posted at

とりあえずこんな感じにしてみた。

List_Add.png

コードはこんなかんじ。

ヘッダー
{
  "elmType": "div",
  "attributes": {
    "class": "ms-borderColor-teal"
  },
  "style": {
    "width": "100%",
    "border-top-width": "0px",
    "border-bottom-width": "5px",
    "border-left-width": "0px",
    "border-right-width": "0px",
    "border-style": "solid",
    "margin-bottom": "16px"
  },
  "children": [
    {
      "elmType": "div",
      "style": {
        "display": "flex",
        "box-sizing": "border-box",
        "align-items": "center"
      },
      "children": [
        {
          "elmType": "div",
          "attributes": {
            "iconName": "TextDocument",
            "class": "ms-fontSize-42 ms-fontWeight-regular ms-fontColor-teal",
            "title": "Details"
          },
          "style": {
            "flex": "none",
            "padding": "0px",
            "padding-left": "0px",
            "height": "36px"
          }
        }
      ]
    },
    {
      "elmType": "div",
      "attributes": {
        "class": "ms-fontColor-neutralSecondary ms-fontWeight-bold ms-fontSize-24"
      },
      "style": {
        "box-sizing": "border-box",
        "width": "100%",
        "text-align": "left",
        "padding": "21px 12px",
        "overflow": "hidden"
      },
      "children": [
        {
          "elmType": "div",
          "txtContent": "Document submission form"
        }
      ]
    }
  ]
}
本文
{
  "sections": [
    {
      "displayname": "Document",
      "fields": [
        "Applicant",
        "Title"
      ]
    },
    {
      "displayname": "Schedule",
      "fields": [
        "Applicant date",
        "Deadline"
      ]
    },
    {
      "displayname": "Progress",
      "fields": [
        "Authorizer",
        "Progress"
      ]
    }
  ]
}
フッダー
{
    "elmType": "div",
    "attributes": {
        "class": "ms-borderColor-teal"
    },
    "style": {
        "width": "100%",
        "border-top-width": "0px",
        "border-bottom-width": "3px",
        "border-left-width": "0px",
        "border-right-width": "0px",
        "border-style": "solid",
        "margin-bottom": "16px"
    }
}
0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?