0. 冒頭の教示部分を作る

以下のように修正してください。

// Text/Instructions
this.options.items.push({
          "type": "text",
           "title": "調査",
           "content": "以下の質問項目をよく読み,あなたに当てはまる選択肢をすべて選んでください。"
        })

Untitled

以下のように表示されます。

Untitled

Untitled

以下のように表示されます。

Untitled

1. 「Check all that apply型アンケート」の表示

以下のように入力してください。「this.options.items.push」で「Page」コンテンツ内に追加することができます。

// Text/Instructions
this.options.items.push({
          "type": "text",
           "title": "調査",
           "content": "以下の質問項目をよく読み,あなたに当てはまる選択肢をすべて選んでください。"
        })

// Check all that apply
this.options.items.push({
          "required": false,
          "type": "checkbox",
          "options": [
            {
              "label": "犬",
              "coding": "1"
            },
            {
              "label": "猫",
              "coding": "2"
            },
            {
              "label": "鳥",
              "coding": "3"
            },
            {
              "label": "兎",
              "coding": "4"
            },
            {
              "label": "亀",
              "coding": "5"
            }
          ],
          "label": "1.飼っているのは?",
          "name": "Q1",
          "shuffle": false
        })

Untitled