Editor .NET which is validated first, Global or Field Validator?
Editor .NET which is validated first, Global or Field Validator?
washuit-iamm            
            
                Posts: 136Questions: 57Answers: 2            
            
            
                            
                                  in Editor             
        I am writing a global editor validator, I am converting a possible field to a bool like so:
inventoryServer.TryGetValue("IsVirtual", out var isVirtual)
if (bool.TryParse(isVirtual.ToString(), out var isVirtualBoolean))
{
    // dependency validation
}
But I already have
.Field(new Field("InventoryServer.IsVirtual")
  .Validator(Validation.Boolean()))
It would be nice for me to be able to just cast IsVirtual if I can trust the Field validator ran and handle that for me.
I did not see the docs mention order https://editor.datatables.net/manual/net/validation
This question has an accepted answers - jump to answer
This discussion has been closed.
            
Answers
Global validation first then a little further down that method, the field validation.
Allan