Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make angular-ui cell editable on single click?

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;
    }
};
like image 297
immirza Avatar asked Nov 10 '15 07:11

immirza


1 Answers

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.

like image 138
imbalind Avatar answered Oct 23 '22 10:10

imbalind