Currently, I am utilizing the Angular Xeditable grid found at this link. I am looking for guidance on how to set the current date as the default date on the calendar control that is integrated within the grid mentioned above. Thank you in advance.
<tr ng-repeat="comment in vm.comments track by $index">
<td>
<span editable-bsdate="comment.date" e-uib-datepicker-popup="MM-dd-yyyy" e-ng-click="opened = !opened" e-is-open="opened" e-name="date" e-form="commentForm" onbeforesave="vm.checkValidity($data)" e-required>
{{ comment.date | date:'MM-dd-yyyy' }}
</span>
</td>
</tr>
<button class="btn btn-primary" ng-click="vm.addComment()">Add</button>