I have a form element:
<form jqx-validator jqx-settings="newLocationValidationSettings" id="newLocationForm">
<div >
<jqx-input jqx-width="350" jqx-height="25" ng-model="newLocation.name" name="name"></jqx-input>
</div>
</form>
in my controller I have
$scope.newLocation = {
name : 'Foo'
}
WHen rendered, the jqx-input field is not populated with the value of $scope.newLocation.name.
When I remove the jqx-validator and jqx-settings from the form tag, the jqx-input field is populated from the model in scope.
Is there anything special that needs to happen with input fields attributed with ng-model inside a jqx-validator widget?