I have model like this:
[{
"TaskDate": "2015-01-04T00:00:00",
"TimesheetList": [{
"WorkItemId": 24,
"ProjectId": 13,
"ProjectName": "My Project",
"UserId": 12,
"UserName": "Some User",
"Date": "2015-01-04T22:00:00",
"Task": "Some text",
"TimeWorked": 2.0,
"Note": null
}]
}]
This data views in table, and I need to add filters by user and by date(from-to) How to do this in angular? I add my example to PLUNKER