我有一个用ui-grid-cellNav
定义的Angular-UI网格,以允许单击时编辑单元格,还有一个自定义模板,可在特定列中提前显示Angular-UI引导程序,如下所示:
index.html:
<head>
<script type="text/ng-template" id="TypeaheadTemplate.html">
<div style="height:100%">
<input ng-class="'colt' + col.uid" type="text" class="typeahead form-control" ng-model="MODEL_COL_FIELD"
uib-typeahead="name as item.name for item in grid.appScope.items | filter:$viewValue"
typeahead-editable="false"
typeahead-on-select="grid.appScope.typeaheadSelected(row.entity, $item)"></input>
</div>
</script>
</head>
<body ng-controller="MainCtrl">
<div ui-grid="gridOptions" ui-grid-edit ui-grid-cellNav></div>
</body>
controller.js
app.controller('MainCtrl', function($scope) {
$scope.items = [
{
id: 1,
name: "Item 1",
description: "Example Item #1"
},
{
id: 2,
name: "Item 2",
description: "Example Item #2"
}];
$scope.data = [{}, {}, {}]
$scope.columns = [
{
displayName: "Item",
field: "item.name",
editableCellTemplate: "TypeaheadTemplate.html",
cellTemplate: "TypeaheadTemplate.html",
enableCellEdit: true,
enableCellEditOnFocus: true
},
{
displayName: "Note",
name: "activityId",
enableCellEdit: true,
enableCellEditOnFocus: true
}]
$scope.gridOptions = {
data: $scope.data,
enableRowSelection: false,
showColumnFooter: true,
multiSelect: false,
enableSorting: false,
enableFiltering: false,
gridMenuShowHideColumns: false,
enableColumnMenus: false,
enableCellEditOnFocus: true,
minRowsToShow: 4,
columnDefs: $scope.columns
};
$scope.typeaheadSelected = function(entity, selectedItem) {
entity.item = selectedItem;
}
});
这很好用,ui-grid-cellNav
允许在Notes列上单击编辑,并在Items列中进行预输入功能。但是,最初单击网格中的预先输入文本框会使文本框模糊,直到再次单击它为止,而在Notes中选择一个单元格(但不可编辑)通常会阻止选择该文本框。因此,虽然功能正常,但存在一些可用性问题。
我已经尝试过使用ng-class
属性将类手动应用于文本框,并认为幕后存在一些逻辑,这些逻辑将元素集中在此类上,但无济于事。我在API文档中也找不到任何东西,建议您能够覆盖给定列的cellNav行为。删除ui-grid-cellNav
指令可解决提前输入的问题,但也会中断单击编辑。
有什么方法可以使Angular-UI网格中的预输入与ui-grid-cellNav
很好地配合?
答案 0 :(得分:0)
您可以为内部有预输入的任何列设置allowCellFocus
到false
,这将确保ui-grid-cellNav
不会将焦点从最初移至预输入文本框。需要注意的一个注意事项是,当cellNav单元格已经具有焦点时,预输入文本框仍将需要两次单击,这将使网格其余部分的Tab-indexing混乱。
$scope.columns = [
{
displayName: "Item",
field: "item.name",
allowCellFocus: false, // Property added here
editableCellTemplate: "TypeaheadTemplate.html",
cellTemplate: "TypeaheadTemplate.html",
enableCellEdit: true,
enableCellEditOnFocus: true
},
// ...
];
如果可能的话,您应该考虑使用ui-select
drop-down代替提前输入。在cellNav的网格中,它们的行为更加可靠,但是您仍然需要考虑混乱的tab-index行为。