-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdifferent-name.html
211 lines (193 loc) · 8.67 KB
/
different-name.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<title>FormValidation example - Adding dynamic field</title>
<meta charset="utf-8" />
<meta content="width=device-width,initial-scale=1" name="viewport" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css" />
<!-- Replace with your path -->
<link rel="stylesheet" href="/vendors/@form-validation/umd/styles/index.min.css" />
</head>
<body>
<form id="demoForm" method="post">
<div class="cf mb2">
<div class="fl w-100">
<div class="fl w-10 pa2">Book</div>
<div class="fl w-30 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
name="book[0].title"
placeholder="Title"
/>
</div>
<div class="fl w-25 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
name="book[0].isbn"
placeholder="ISBN"
/>
</div>
<div class="fl w-20 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
name="book[0].price"
placeholder="Price"
/>
</div>
<div class="fl w-10 ph2">
<button type="button" class="ba b--black-20 bg-green white ph3 pv2 br2" id="addButton">
+
</button>
</div>
</div>
</div>
<!-- Template -->
<div class="cf mb2" id="template" style="display: none">
<div class="fl w-100">
<div class="fl w-10 pa2">Book</div>
<div class="fl w-30 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
data-name="book.title"
placeholder="Title"
/>
</div>
<div class="fl w-25 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
data-name="book.isbn"
placeholder="ISBN"
/>
</div>
<div class="fl w-20 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
data-name="book.price"
placeholder="Price"
/>
</div>
<div class="fl w-10 ph2">
<button type="button" class="ba b--black-20 bg-green white ph3 pv2 br2 js-remove-button">
-
</button>
</div>
</div>
</div>
<div class="cf mb2">
<div class="fl w-100">
<div class="fl w-10 pa2"></div>
<div class="fl w-50">
<button type="submit" class="ba b--black-20 bg-blue white ph3 pv2 br2">Submit</button>
</div>
</div>
</div>
</form>
<!--
You have to include the full version of FormValidation which contains all validators
including the isbn validator
-->
<!-- Replace with your path -->
<script src="/vendors/@form-validation/umd/bundle/full.min.js"></script>
<script src="/vendors/@form-validation/umd/plugin-tachyons/index.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function (e) {
const titleValidators = {
validators: {
notEmpty: {
message: 'The title is required',
},
},
};
const isbnValidators = {
validators: {
notEmpty: {
message: 'The ISBN is required',
},
isbn: {
message: 'The ISBN is not valid',
},
},
};
const priceValidators = {
validators: {
notEmpty: {
message: 'The price is required',
},
numeric: {
message: 'The price must be a numeric number',
},
},
};
const demoForm = document.getElementById('demoForm');
const fv = FormValidation.formValidation(demoForm, {
fields: {
'book[0].title': titleValidators,
'book[0].isbn': isbnValidators,
'book[0].price': priceValidators,
},
plugins: {
submitButton: new FormValidation.plugins.SubmitButton(),
trigger: new FormValidation.plugins.Trigger(),
tachyons: new FormValidation.plugins.Tachyons(),
icon: new FormValidation.plugins.Icon({
valid: 'fa fa-check',
invalid: 'fa fa-times',
validating: 'fa fa-refresh',
}),
},
});
const removeRow = function (rowIndex) {
const row = demoForm.querySelector('[data-row-index="' + rowIndex + '"]');
// Remove field
fv.removeField('book[' + rowIndex + '].title')
.removeField('book[' + rowIndex + '].isbn')
.removeField('book[' + rowIndex + '].price');
// Remove row
row.parentNode.removeChild(row);
};
const template = document.getElementById('template');
let rowIndex = 0;
document.getElementById('addButton').addEventListener('click', function () {
rowIndex++;
const clone = template.cloneNode(true);
clone.removeAttribute('id');
// Show the row
clone.style.display = 'block';
clone.setAttribute('data-row-index', rowIndex);
// Insert before the template
template.before(clone);
clone
.querySelector('[data-name="book.title"]')
.setAttribute('name', 'book[' + rowIndex + '].title');
clone.querySelector('[data-name="book.isbn"]').setAttribute('name', 'book[' + rowIndex + '].isbn');
clone
.querySelector('[data-name="book.price"]')
.setAttribute('name', 'book[' + rowIndex + '].price');
// Add new fields
// Note that we also pass the validator rules for new field as the third parameter
fv.addField('book[' + rowIndex + '].title', titleValidators)
.addField('book[' + rowIndex + '].isbn', isbnValidators)
.addField('book[' + rowIndex + '].price', priceValidators);
// Handle the click event of removeButton
const removeBtn = clone.querySelector('.js-remove-button');
removeBtn.setAttribute('data-row-index', rowIndex);
removeBtn.addEventListener('click', function (e) {
// Get the row index
const index = e.target.getAttribute('data-row-index');
removeRow(index);
});
});
});
</script>
</body>
</html>