Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/4e534e5a6db3a9dbdf2cfae149c76162a30f68e5?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix newsletter signp example: hidden fields from previous form were missing.

pull/7/head
Ferry Boender 8 years ago
parent ff0a8fa789
commit 4e534e5a6d
  1. 28
      examples/megacorp_acc/megacorp_acc.json

@ -55,6 +55,34 @@
"title": "Product news", "title": "Product news",
"type": "checkbox", "type": "checkbox",
"checked": true "checked": true
},
{
"name": "first_name",
"title": "First name",
"type": "string",
"hidden": true
},
{
"name": "last_name",
"title": "Last name",
"type": "string",
"hidden": true
},
{
"name": "birthdate",
"title": "Birthdate",
"type": "date",
"min": "1900-01-01",
"max": "2015-01-01",
"default_value": "1980-02-05",
"hidden": true
},
{
"name": "email_address",
"title": "What's your email address?",
"type": "string",
"style": "width: 300px;",
"hidden": true
} }
] ]
}, },

Loading…
Cancel
Save