无法为 ag-grid 数字编辑器更新 9007 数值

Not able to update 9007 numeric value for ag-grid numeric editor

在 ag-grid 中,我可以更新数字可编辑列中的任何值,但 9007 除外。 不仅是 9007,您不能更新以 9007 结尾的值。 这个问题可以在官方文档示例中看到 here

code https://plnkr.co/edit/?open=main.js&preview

这是故意添加到他们文档站点上的演示代码中的(它不是标准代码的一部分)

  // example - will reject the number if it contains the value 007
  // - not very practical, but demonstrates the method.
  isCancelAfterEnd() {
    var value = this.getValue();
    return value.indexOf('007') >= 0;
  }

这肯定是他们提出的一个奇怪的例子,被发现得很好