Sir,
Angular 1 is used in the project. Inside ng-repeat block I want to save the value in a variable and use that value in other div. The table will always have one row.
My code as follows:-
<div ng-init="GetProcessdata('LAST')" style="background-color:white;">
<table id="tblappdata" class="table table-reponsive table-font table-bordered">
<thead>
<tr>
<th>Start Time</th>
<th>End Time</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr ng-repeat=" e in lasteod">
<td>{{e.StartTime}}</td>
<td>{{e.EndTime}}</td>
<td>{{e.Status}}</td>
</tr>
</tbody>
</table>
</div>
Based on Status value, I have other div to show hide.
<div ng-if="e.Status == 'A'">
<label class="control-label" id="lbldisb">Hello</label>
</div>
Thanks