I want to create one list which is filtered by Soid
Bascially i have 2 kind of list : 1 Employees, 2 Transactions
Employees got EmpID and Name
Transactions got `ID` , EmpID , and TransDate
I want filter something like this : data-bind="foreach: $data.Transactions(EmpID )">
(
using custom binding , is it possible?
something like this
<table>
<tbody data-bind="foreach: Employees, visible: Employees().length > 0">
<tr>
<td class="centerdata" data-bind="text: ID"></td>
<td class="centerdata" data-bind="text: Name"></td>
<td>
<table>
<tbody data-bind="foreach: $data.Transactions">
<tr>
<td data-bind="text:TransDate"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
and this is what i tired : http://jsfiddle.net/bxfXd/2237/