3
我有一個表:顯示多角度引導日期選擇器組件表中的
<table class="table " id="Table" width="100%">
<thead>
<tr>
<th>ID</th>
<th>From</th>
<th>To</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="id in inputID">
<td class="col-md-1"> {{ id }} </td>
<td class="col-md-5">
<div class="form-group">
<div class="col-sm-10">
<p class="input-group">
<input type="text" class="form-control" datetime-picker="dd/MM/yyyy HH:mm" ng-model="ctrl.picker4.date" is-open="ctrl.picker4.open" datepicker-options="ctrl.picker4.datepickerOptions" save-as="json"/>
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="ctrl.openCalendar($event, 'picker4')"><i class="fa fa-calendar"></i></button>
</span>
</p>
</div>
</div>
</td>
<td class="col-md-5">
<div class="form-group">
<div class="col-sm-10">
<p class="input-group">
<input type="text" class="form-control" datetime-picker="dd/MM/yyyy HH:mm" ng-model="ctrl.picker5.date" is-open="ctrl.picker5.open" datepicker-options="ctrl.picker5.datepickerOptions" initialPicker='time' save-as="json" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="ctrl.openCalendar($event, 'picker5')"><i class="fa fa-calendar"></i></button>
</span>
</p>
</div>
</div>
</td>
<td class="col-md-1">
<p class="form-control-static">{{ ctrl.timeRange }} (minutes)</p>
</td>
</tr>
</tbody>
</table>
我使用Datepicker from Angular UI Bootstrap在表格單元格中的一個。 當我單擊一行中的日曆圖標並選擇一天時,則所有行都將替換爲表示日期選擇器值的字符串值。
http://plnkr.co/edit/59KKPq?p=preview
非常感謝您! – monks
請標記爲答案。 – Toddsden