missing data-grav-form to initialize js like selectize

This commit is contained in:
Andy Miller
2015-08-21 11:38:34 -06:00
parent 5ec96aa211
commit 1d1a973b09
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{% set form_id = form_id ? form_id : 'blueprints' %}
<form id="{{ form_id }}" method="post">
<form id="{{ form_id }}" method="post" data-grav-form="{{ form_id }}">
{% for field in blueprints.fields %}
{% if field.type %}
{% set value = data.value(field.name) %}

View File

@@ -1,6 +1,6 @@
{% set form_id = form_id ? form_id : 'blueprints' %}
<form id="{{ form_id }}" method="post">
<form id="{{ form_id }}" method="post" data-grav-form="{{ form_id }}">
{% for field in blueprints.fields %}
{% if field.type %}
{% set value = data.value(field.name) %}