I have a view with some inputs in a table row. Is there a way to check if the whole model is valid without using form (can't have form in tr ) ?
<tr ng-controller="SomeCtrl">
    <td>
        <input type="text" ng-model="someModel.name" required="required" ng-minlength="3">
    </td>
    <td>
        <input type="text" ng-model="someModel.x" required="required" ng-minlength="3">
    </td>
    <td>
        <input type="text" ng-model="someModel.y" required="required" ng-minlength="3">
    </td>
    <td>
        <button ng-click="save(someModel)">Save</button>
    </td>
</tr>
In controller i want to have something like this
function ($rootScope, $scope, serive) {
    $scope.save = function (someModel) {
        if (someModel.$valid) {}
    };
}
 
     
    