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
@TextField(title = "First Name", placeHolder = "Your first name", pattern = "[a-z]", noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field", readOnly = true)
399
+
@TextField(title = "First Name", placeHolder = "Your first name", pattern = "[a-z]",minLenght=6,maxLenght=10,noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field", readOnly = true)
396
400
privateStringfirstName;
397
401
398
402
publicStringgetFirstName() {
@@ -403,7 +407,7 @@ public String getFirstName() {
403
407
404
408
classTextFieldFormRightimplementsSerializable {
405
409
406
-
@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")
410
+
@TextField(title = "First Name", placeHolder = "Your first name", fieldAddonRight = "@", pattern = "[a-z]",minLenght=6,maxLenght=10,noTitle = true, validationMessage = "this is a validation msg", description = "This is a description for your first name field")
407
411
privateStringfirstName;
408
412
409
413
publicStringgetFirstName() {
@@ -474,7 +478,7 @@ public Double getNumber() {
474
478
475
479
classPasswordFormimplementsSerializable {
476
480
477
-
@Password(title = "Password", placeHolder = "Please set you password", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
481
+
@Password(title = "Password", placeHolder = "Please set you password", pattern = "[a-z]", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
478
482
privateStringpassword;
479
483
480
484
publicStringgetPassword() {
@@ -484,7 +488,7 @@ public String getPassword() {
484
488
485
489
classPasswordForm2implementsSerializable {
486
490
487
-
@Password(title = "Password", placeHolder = "Please set you password", fieldAddonRight = "@", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
491
+
@Password(title = "Password", placeHolder = "Please set you password", pattern = "[a-z]",minLenght=6,maxLenght=10, fieldAddonRight = "@", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
488
492
privateStringpassword;
489
493
490
494
publicStringgetPassword() {
@@ -494,7 +498,7 @@ public String getPassword() {
494
498
495
499
classPasswordForm3implementsSerializable {
496
500
497
-
@Password(title = "Password", placeHolder = "Please set you password", fieldAddonLeft = "@", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
501
+
@Password(title = "Password", placeHolder = "Please set you password", pattern = "[a-z]",minLenght=6,maxLenght=10, fieldAddonLeft = "@", description = "This is password", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
498
502
privateStringpassword;
499
503
500
504
publicStringgetPassword() {
@@ -504,7 +508,7 @@ public String getPassword() {
504
508
505
509
classTextAreaForm2implementsSerializable {
506
510
507
-
@TextArea(title = "Address", placeHolder = "Fill your address please", fieldAddonLeft = "@", description = "This is textarea", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
511
+
@TextArea(title = "Address", placeHolder = "Fill your address please", fieldAddonLeft = "@",minLenght=6,maxLenght=10,description = "This is textarea", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
508
512
privateStringaddress;
509
513
510
514
publicStringgetAddress() {
@@ -514,7 +518,7 @@ public String getAddress() {
514
518
515
519
classTextAreaForm3implementsSerializable {
516
520
517
-
@TextArea(title = "Address", placeHolder = "Fill your address please",fieldAddonRight = "@", description = "This is textarea", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
521
+
@TextArea(title = "Address", placeHolder = "Fill your address please",fieldAddonRight = "@",minLenght=6,maxLenght=10,description = "This is textarea", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
518
522
privateStringaddress;
519
523
520
524
publicStringgetAddress() {
@@ -524,7 +528,7 @@ public String getAddress() {
524
528
525
529
classTextAreaFormimplementsSerializable {
526
530
527
-
@TextArea(title = "Address", placeHolder = "Fill your address please", description = "This is textarea", noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
531
+
@TextArea(title = "Address", placeHolder = "Fill your address please", description = "This is textarea",minLenght=6,maxLenght=10,noTitle = true, validationMessage = "this is a validation msg", readOnly = true)
0 commit comments