I'm attempting to pass form information through hidden input like so:
<input type="hidden" required ng-model="formHolder.template[position].itemKey[itr]" ng-value="[[ formItem ]]" />
formItem
can be any string. Errors occur with strings that contain spaces.
Error angular.js:13708 Error: [$parse:syntax] Syntax Error: Token 'Line' is an unexpected token at column 9 of the expression [Subject Line] starting at [Line].
Is ng-value
expecting a certain type?