我正在开发angularjs应用程序。我正在根据用户输入的值显示角度UI网格。当角度UI网格中没有要显示的值时,我想显示一条消息,说明没有记录找到。 请找到演示here
当用户将“亚特兰大”设置为“文本”字段并将“芝加哥”输入“文本”字段并单击“搜索位置”时,它将显示UI网格。当用户键入一些东西而不是显示空白时我想显示NO Records喜欢的消息。 另一个问题是我试图添加一个带有单选按钮的列,以便用户在想要选择行时可以选择该单选按钮。通过向其中添加新列,我无法在网格的每一行中成功显示单选按钮。 任何建议都会非常有帮助。成为一个面临许多问题需要解决的新手。感谢。
js code:
angular.module('myApp', ['ngAnimate', 'ui.bootstrap','ngTouch', 'ui.grid', 'ui.grid.selection', 'ui.grid.edit','ui.grid.cellNav']);
angular.module('myApp').controller('citiesCtrl',function($scope){
// $scope. places = undefined;
$scope.items = ["Atlanta", "Chicago", "NewYork"];
$scope.selectAction = function() {
console.log($scope.places1);
};
});
/*Controller for searchLocations button*/
angular.module('myApp').controller('searchController', ['$scope', function($scope) {
$scope.places = ['', ''];
$scope.searchValue = '';
$scope.submit = function() {
if ($scope.places[0].length > 0 && $scope.places[1].length > 0) {
$scope.searchValue = $scope.places[0] + $scope.places[1];
}
};
$scope.users = [
{'name' : 'AtlantaChicago',
'show' : true,
'details' : [
{"Travel Date": "10/10/2014", commute:"Bus"},
{"Travel Date": "10/11/2014", commute:"flight"}]
},
{'name' : 'NewYorkChicago',
'show' : true,
'details': [
{"Travel Date": "3/15/2016", commute:"flight"},
{"Travel Date": "10/12/2016", commute:"flight"},
]
}
];
$scope.gridOptions = {
enableFiltering: true,
columnDefs: [
{ name: 'Travel Date', width: '5%'},
{ name: 'Departurecommute', enableFiltering: false, width: '12%' }
],
rowHeight: 20,
enableHorizontalScrollbar:2
};
}]);
HTML code:
<div class="row">
<div class="form-group" ng-controller="citiesCtrl">
<label>From</label>
<input type="text" ng-model="places[0]" placeholder="Type Departure City" typeahead="item for item in items | filter:$viewValue | limitTo:8">
</div>
<div class="form-group" ng-controller="citiesCtrl">
<label>To</label>
<input type="text" ng-model="places[1]" placeholder="Type Destination City" typeahead="item for item in items | filter:$viewValue | limitTo:8">
</div>
</div>
<input type="button" value="SearchLocations" ng-click="submit()">
<div ng-repeat="user in users | filter: {name: searchValue} : true ">
<h3>First Grid</h3>
<div ui-grid="{ data: user.details }" ng-show="user.show" class="myGrid"></div>
</div>
我尝试为每一行添加一个单选按钮但未能显示它。 我尝试将下面的代码添加到新添加的列中,以便在每一行中显示单选按钮,以便用户可以选择任何一行。
{
name: 'ReleaseAction', width: '350',
cellTemplate: '<div class="btn-group" ng-init="releaseAction=0"><input ng-model="releaseAction" type="radio" value="0" style="width:20px"> Add</div>'
},
当没有要显示的网格以及在UI网格中的每一行中显示单选按钮时显示消息的任何消息都会有所帮助。
答案 0 :(得分:1)
您可以将ng-repeat
数据集打包到新的variable
,您可以在其中检查“数据”的可用性。
<div ng-repeat="user in filteredUsers = (users | filter: {name: searchValue} : true)">
<h3>First Grid</h3>
<div ui-grid="{ data: user.details }" ng-show="user.show" class="myGrid"></div>
</div>
然后在您的视图中,您可以在没有结果时添加消息:
<div ng-if="!filteredUsers.length">
No data available
</div>
您的代码已更新,请参阅Plnkr