Currently, I am utilizing ui-validate utilities available at https://github.com/angular-ui/ui-validate
The issue I am facing involves validating an expression on a form without an input field. To illustrate, consider the following object:
$scope.item = { field1 : 0, field2: 0, field3: 0 };
I aim to receive an error based on the provided expression: field1 + field2 + field3 == 0
This validation pertains to the entire form, not just specific inputs.