我想将 UI-SELECT 结果绑定到 UI-GRID 中...
$scope.gridOptions = {
enableSorting: true,
showFooter: true,
columnDefs: [
{ field: 'name', name: 'Name' },
],
data: 'multipleDemo.selected',
onRegisterApi: function( gridApi ) {
$scope.gridApi = gridApi;
}
};
$scope.selectItem = function (item, model) {
$scope.gridApi.core.notifyDataChange( $scope.gridApi.grid, uiGridConstants.dataChange.EDIT );
};
我的翡翠模板是这样的:
ui-select(theme='bootstrap', multiple='', ng-model='multipleDemo.selected', ng-disabled='disabled', close-on-select='false', on-select='selectItem()')
ui-select-match(placeholder='select something...') {{$item.name}}
ui-select-choices(repeat='f in data | filter: $select.search')
div(ng-bind-html='f.name | highlight: $select.search')
#grid.grid(ui-grid="gridOptions")
编辑
我解决了这个问题。(我的ng控制器只在腰围周围,而不是在选择周围......
你介意发布一个 plunker 或摆弄你的代码吗?很难看到它,我正在使用类似的东西。干杯!
编辑:看StackOverflow'ers,一个用工作解决方案回答自己问题的OP。一种真正稀有而雄伟的野兽。从他的评论中: http://embed.plnkr.co/d37YrfRjE7YZPgwCncBE/preview