ノックアウト検証を使用して検証を追加しようとしているフォームのビューモデルがあります。
<table data-bind='visible: slots().length > 0'>
<thead>
<tr>
<th>Start Time</th>
<th>End Time</th>
</tr>
</thead>
<tbody data-bind='foreach: slots'>
<tr>
<td><input type="text" class="input-medium time-picker" data-bind='value: start_time' required="true"/></td>
<td><input type="text" class="input-medium time-picker" data-bind='value: end_time' required="true"/></td>
<td><a href='#' data-bind='click: $root.removeSlot'><i class="icon-minus-sign"/></a></td>
</tr>
</tbody>
</table>
<button class="btn btn-primary" data-bind='click: addSlot'>Add Row</button>
行1に「end_time」を入力し、行2のstart_timeよりも新しい行を追加する場合、行1のend_timeより大きくなければならないことを検証する必要があります。