Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AngularJS (ng-grid) "editableCellTemplate" remains in edit mode on loss of focus

In the latest version of ng-grid(v2.0.7), when a editableCellTemplate is in edit mode and loses focus, it remain in edit mode. Is this a bug or did I configure the grid incorrectly?

Here's an example: http://plnkr.co/edit/OgEjk7wFaC982FrKbeHH?p=preview where column 0 contains the editableCellTemplate.

like image 311
Rob Avatar asked Jul 16 '13 15:07

Rob


1 Answers

I found the answer in one of the templates inside of ng-grid.js. I was missing ng-input="COL_FIELD"

  <select ng-cell-input ng-class="'colt' + $index" ng-input="COL_FIELD" ng-model="COL_FIELD">
      <option>nl</option>
      <option>fr</option>
      <option>en</option>
  </select>
like image 68
Rob Avatar answered Nov 15 '22 23:11

Rob