form-conductor icon indicating copy to clipboard operation
form-conductor copied to clipboard

Support Validation Priorities

Open NaingAungLuu opened this issue 3 years ago • 0 comments

We'll need to support priority values in form field annotations to specify the order in which they are validated

IDEA

@Form
data class FormData(
    @Priority(2)
    val emailAddress: String,
    
    @Priority(1)
    val name: String,

    @Priority(3)
    val countryCode: String,

    @Priority(4)
   val mobileNumber: String 
)

NaingAungLuu avatar Dec 20 '22 18:12 NaingAungLuu