I have been attempting to display the versions one below the other, but so far I haven't been successful. Here is the code I am working with:
<input type="text"
data-ng-model="file"
typeahead="document as document.fileName for document in findDocumentsByTerm($viewValue)"
typeahead-template-url = "documentContactTemplate.htm" />
<script type="text/ng-template" id="documentContactTemplate.htm">
<div class="icon-hover">
<table class="table">
<tr data-ng-click="$event.stopPropagation()">
<td style="border:none;"><b>{{match.model.fileName}}</b></td>
<td style="border:none;"><span> </span></td>
<td style="border:none;">
<div data-ng-repeat="documentFileVersion in match.model.documentFileVersions">
<input type="checkbox" data-ng-model="selected" ng-true-value="true" ng-false-value="false" data-ng-click="match.model.vm.attachFile(selected, match.model, documentFileVersion)" /> {{documentFileVersion.version.substr(1)}}
</div>
</td>
</tr>
</table>
</div>
</script>
and currently it appears like this:
https://i.sstatic.net/xwO3t.png
Does anyone know how I can arrange the versions one below the other?