我正在尝试在 Angular Smart Table ( http://lorenzofox3.github.io/smart-table-website/ ) 上应用日期范围过滤器,但是,我无法做到这一点。我在网上看到的唯一例子指向:http ://plnkr.co/edit/Idbc1JNHKylHuX6mNwZ6?p=preview这也坏了。
这是我的 HTML:
<div st-table="releaseListDisplay" st-safe-src="releaseList">
<div class="filter-box">
<st-date-range></st-date-range>
</div>
<table class="list-page">
<thead>
<tr>
<th st-sort="releaseNum">Release#</th>
<th class="p15">Product Name</th>
<th st-sort="dateInternalRelease">Int. Release Date</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="release in releaseListDisplay">
<td>{{release.releaseNum}}</td>
<td>{{release.buildNum}}</td>
<td>{{release.dateInternalRelease | date:'yyyy-MM-dd'}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="9">
<div st-pagination="" st-items-by-page="10"></div>
</td>
</tr>
</tfoot>
</table>
</div>
这是 st-date-range 指令的 template.html 文件内容:
<label for="fromdate">From:</label>
<input type="date" name="fromdate" id="fromdate"
placeholder="MM/DD/YYYY" ng-model="fromDate"/>
<label for="todate">To:</label>
<input type="date" name="todate" id="todate"
placeholder="MM/DD/YYYY" ng-model="toDate"/>
这是指令:
app.directive('stDateRange', function($timeout){
return{
restrict:'E',
require:'^stTable',
templateUrl:'template.html',
scope:false,
link: function(scope,element,attr,ctrl){
var tableState = ctrl.tableState();
scope.$watchGroup(["fromDate","toDate"],
function(newValues,oldValues){
if(newValues){
var start = newValues[0];
var end = newValues[1];
if(start && end){
var d1 = new Date(start);
var d2 = new Date(end);
ctrl.search({after:d1.getTime(),before:d2.getTime()},'dateInternalRelease');
}
}
}
);
}
};
});
我还尝试使用 $filter 使用比较器函数过滤掉 releaseList 中的记录,但随后智能表分页中断。
我真的需要一些快速帮助。非常感谢!