All I create a filter box in ng-table following the instrunctions of http://bazalt-cms.com/ng-table/example/4
my code is same as the example: create filter in html:
<table ng-table="tableParams" show-filter="true" class="table">
<tr ng-repeat="user in $data">
<td data-title="'Name'" filter="{ 'name': 'text' }">
now we can see the layout:
but I don't want the filter box in table, like this:
the filer is above the table my code of the filter box :
<input type="text" ng-model="filter.name" />
<table ng-table="tableParams" show-filter="false" class="table">
<tr ng-repeat="user in $data">
<td data-title="'Name'" filter="{ 'name': 'text' }">
{{user.name}}
</td>
... using ng-model="filter.name" to bind, but it doesn't work...
Is there any way implement my imagination?