i have following code for ng-table:see plunker
var app = angular.module('main', ['ngTable']).
controller('DemoCtrl', function($scope, $filter, ngTableParams) {
var data = [{name: "Moroni", age: 50,address:{coun:'USA',state:'sd'}},
{name: "Tiancum", age: 43,address:{coun:'UK',state:'sda'}},
];
$scope.columns = [
{ title: 'Name', field: 'name', visible: true, filter: { 'name': 'text' } },
{ title: 'Age', field: 'age', visible: true },
{ title: 'country', field: 'add', visible: true }
];
$scope.tableParams = new ngTableParams({
page: 1, // show first page
count: 10, // count per page
filter: {
name: 'M' // initial filter
}
}, {
total: data.length, // length of data
getData: function($defer, params) {
// use build-in angular filter
var orderedData = params.sorting() ?
$filter('orderBy')(data, params.orderBy()) :
data;
$defer.resolve(orderedData.slice((params.page() - 1) * params.count(), params.page() * params.count()));
}
});
})
and HTML:
<tr ng-repeat="user in $data">
<td ng-repeat="column in columns" ng-show="column.visible" sortable="column.field">
{{user[column.field]}}
</td>
</tr>
i have to display name age and country in column. but using this code i can see name ,age and address
object not country. please suggest me how to display only country or state.
i got the solution for this question : see plunker
replace above html code with this:
<tr ng-repeat="user in $data">
<td ng-repeat="column in columns" ng-show="column.visible" sortable="column.field">
{{user[column.field][column.subfield] || user[column.field]}}
</td>
</tr>
add subfield in to $scope.columns
in a particular column in which you want to display subfield like this like this:
$scope.columns = [
{ title: 'Name', field: 'name', visible: true, filter: { 'name': 'text' } },
{ title: 'Age', field: 'age', visible: true },
{ title: 'country', field: 'add', visible: true,subfield:'coun' }
];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With