当我尝试使用ui-grid内的下拉列表从数据库传递给它时,我遇到了一些问题。在docs之后,在gridOptions.columnDefs中,我创建了一个id和值的数组,如:
{ name: 'gender', displayName: 'Gender', editableCellTemplate: 'ui-grid/dropdownEditor', width: '20%',
cellFilter: 'mapGender', editDropdownValueLabel: 'gender', editDropdownOptionsArray: [
{ id: 1, gender: 'male' },
{ id: 2, gender: 'female' }
] },
但是,就我而言," id" "值",必须是数据库中的字段,如下所示:
{ id: data.Id, gender: data.Nome }
它不起作用。关于如何解决这个问题的任何想法? 谢谢!
答案 0 :(得分:2)
您可以考虑使用Angular Grid - 它允许您拥有自定义单元格渲染器,您可以在其中拥有一个交互式的单元格渲染器。我有它在我的工作中工作(不能发布代码示例,因为它属于我工作的公司)但是如果这是一个选项我可以嘲笑并发布它。
答案 1 :(得分:1)
尝试这样的事情
editableCellTemplate: 'ui-grid/dropdownEditor',
editDropdownOptionsArray: YourDataArray,
editDropdownIdLabel: 'Id',
editDropdownValueLabel: 'Nome'
YourDataArray可以是服务调用 - 例如,对我来说,我调用了MyServiceName.Get() - 返回的对象可能具有类似于' Id'和'Nome'在你的问题中。
答案 2 :(得分:1)
这是我的方法。它基于这个主题:
https://github.com/angular-ui/ng-grid/issues/2808
1)我将uiGridFactory.js定义为:
angularFactories.factory('uiGridFactory', function ($http, $rootScope) {
var factory = {};
/* It returns a dropdown filter to help you show editDropdownValueLabel
*
* Parameters:
*
* - input: selected input value, it always comes when you select a dropdown value
* - map: Dictionary containing the catalog info. For example:
* $scope.languageCatalog = [ {'id': 'EN', 'description': 'English'}, {'id': 'ES', 'description': 'Español'} ]
* - idLabel: ID label. For this example: 'id'.
* - valueLabel: Value label. For this example: 'description'.
*
* 1) Configure cellFilter this way at the ui-grid colDef:
*
* { field: 'languageId', name: 'Language'), editableCellTemplate: 'ui-grid/dropdownEditor',
* editDropdownIdLabel: 'id', editDropdownValueLabel: 'description',
* editDropdownOptionsArray: $scope.languageCatalog,
* cellFilter: 'mapDropdown:row:row.grid.appScope.languageCatalog:"id":"description":languageCatalog' },
*
* 2) Append this snippet to the controller:
*
* .filter('mapDropdown', function(uiGridFactory) {
* return uiGridFactory.getMapDrowdownFilter()
* });
*
*/
factory.getMapDrowdownFilter = function() {
return function(input, map, idLabel, valueLabel) {
if (map != null)
{
for (var i = 0; i < map.length; i ++) {
if (map[i][idLabel] == input)
{
return map[i][valueLabel];
}
}
}
return "";
}
}
return factory;
});
2)然后我在控制器末尾添加了过滤器mapDropdown,需要下拉逻辑
.filter('mapDropdown', function(uiGridFactory) {
return uiGridFactory.getMapDrowdownFilter()
});
3)我将此cellFilter添加到包含下拉列表的列定义中:
columnDefs: [
{ field: 'id', 'ID')},
{ field: 'languageId', name: 'Language',
editableCellTemplate: 'ui-grid/dropdownEditor',
editDropdownIdLabel: 'id', editDropdownValueLabel: 'description',
editDropdownOptionsArray: $scope.languageCatalog,
cellFilter: 'mapDropdown:row.grid.appScope.languageCatalog:"id":"description"' },
{ field: 'comments', 'Comments' }
]
其中mapDropdown()参数为:
a)目录图(row.grid.appScope.languageCatalog)
b)ID标签
c)VALUE标签
注意:在我的示例中,我使用了带有工厂从Database加载的$ scope.languageCatalog变量。你必须实现自己的。
factory.getLanguages = function (callback) {
$http.get(RESOURCES.REST_ADDRESS + 'getLanguages').
success(function (data, status, headers, config) {
callback(data);
}).
error(function (data, status, headers, config) {
});
}