-->

AngularJS (ng-grid) “editableCellTemplate” remains

2020-02-06 06:49发布

问题:

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.

回答1:

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>