I am trying to make angular ui-grid cell editable (row)
cell editable on single click.
Right Now, Cell becomes editable on double click.
How do I make cell editable on single click?
HTML:
<div class="grid testGrid" ui-grid="testGridOptions" ui-grid-edit
ui-grid-row-edit style="width: 100%;">
</div>
Controller:
var columns = [
{ field: 'Name', displayName: 'Name', cellEditableCondition: function ($scope) { return $scope.row.entity.showRemoved; } }
];
Grid options:
$scope.testGridOptions = {
enableRowSelection: false,
enableRowHeaderSelection: false,
enableCellEdit: true,
enableCellEditOnFocus: false,
enableSorting: false,
enableFiltering: false,
multiSelect: false,
rowHeight: 30,
enableColumnMenus: false,
enableGridMenu: false,
showGridFooter: false,
onRegisterApi: function (gridApi) {
$scope.gridApi = gridApi;
}
};
Editing on single click is automatically added if you use ui-grid's navigation and set enableCellEditOnFocus
to true
in your gridOptions
.
Just add ui-grid-cellNav
to your grid's <div>
.
The only thing I don't know is if it's compatible with ui-grid-row-edit
.
Anyhow take a look at this tutorial to know more.
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