You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -177,6 +211,28 @@ public String getFirstName() {
177
211
178
212
}
179
213
214
+
classTextFieldForm2implementsSerializable {
215
+
216
+
@TextField(title = "First Name", placeHolder = "Your first name", fieldAddonRight = "@", pattern = "[a-z]", noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field")
217
+
privateStringfirstName;
218
+
219
+
publicStringgetFirstName() {
220
+
returnfirstName;
221
+
}
222
+
223
+
}
224
+
225
+
classTextFieldForm3implementsSerializable {
226
+
227
+
@TextField(title = "First Name", placeHolder = "Your first name", fieldAddonLeft = "@", pattern = "[a-z]", noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field")
228
+
privateStringfirstName;
229
+
230
+
publicStringgetFirstName() {
231
+
returnfirstName;
232
+
}
233
+
234
+
}
235
+
180
236
classNumberFormimplementsSerializable {
181
237
182
238
@Number(title = "Number of children", placeHolder = "Number of children", description = "This is a number", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
0 commit comments