I'm displaying list of values fetched from DB. One of its attributes is array. I handled it using table as below,
<tr>
<td>{{movId}}</td>
<td>{{movtitle}}</td>
<td>
<ul>
<li ng-repeat="mem in mov.cast>{{mem}}</li>
</ul>
</td>
</tr>
But i've changed it to display in text box instead of table so that i can edit as below,
<input type="text" ng-value="movId">
<input type="text" ng-value="movtitle">
I don't know how to display array attribute ("Cast") in text box
How to attain this...Hope it is possible...if not any alter way to handle it??