AngularJS (ng-grid) “editableCellTemplate” remains

2020-02-06 06:21发布

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条回答
女痞
2楼-- · 2020-02-06 07:14

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>
查看更多
登录 后发表回答