表

コンポーネントの情報 {#component-data}

コンポーネントの値 {#component-value}

属性タイプ説明
tableobjectテーブル情報

table {#component-value-table}

属性タイプ説明
headersarrayヘッダー情報
rowDatasarray行情報

headers {#component-value-headers}

属性タイプ説明
cellIdstringフィールド ID
cellTypestringフィールドの種類
text: 文字
number: 数字
date: 日付
combo: プルダウンリスト
multiCombo: 複数選択プルダウン
sequence: 行番号
link: URL
emp-search: メンバー検索

rowDatas {#component-value-rowdatas}

属性タイプ説明
cellDatasarray行の列情報

cellDatas {#component-value-celldatas}

属性タイプ説明
cellIdstringフィールド ID
cellValuestring行の列の値
複数選択プルダウン: 区切り文字 (,) で複数の値を指定できる
行番号: 1 から順に指定する
メンバー検索: ユーザー ID を指定する

Request Example {#component-data-example}

[  {    "componentType": "CP_TABLE_FORM",    "componentId": "80c42a27-1234-1234-1234",    "componentValue": {      "table": {        "headers": [          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "text"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "number"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "date"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "combo"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "multiCombo"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "sequence"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "link"          },          {            "cellId": "80c42a27-1234-1234-1234",            "cellType": "emp-search"          }        ],        "rowDatas": [          {            "cellDatas": [              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "ワークス太郎"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "50"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "1950.01.01"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "1a2b3c4d"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "1a2b3c4d,5e6f7890"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "1"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "https://works.do"              },              {                "cellId": "80c42a27-1234-1234-1234",                "cellValue": "1234abcd"              }            ]          }        ]      }    }  }]