How would I be able to collect all the data from the table then parse it into a JSON so I could then write it to a properties file?
HTML
<table class="table">
<thead>
<tr>
<th>Key</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="(key, value) in configResources">
<td>{{key}}</td>
<td><input type="text" value={{value}}></td>
</tr>
</tbody>
</table>
<button class="btn btn-primary" ng-click="changeProp()"></button>
JS
$scope.changeProp(){
//collect data then parse as JSON
};