码迷,mamicode.com
首页 > 其他好文 > 详细

推荐一个好的表格插件,handsontable

时间:2014-12-26 18:51:12      阅读:1527      评论:0      收藏:0      [点我收藏+]

标签:handsontable 中文自动完成

网址:http://handsontable.com/


目前的版本是0.12.2,有一个bug需要手工修复一下。


设置了列的自动完成时默认不能输入中文的bug。

在firefox,chrome和IE11上测试通过



修复办法:


1.3936行中的"keydown"改为"keyup"

      eventManager.addEventListener(document, ‘keyup‘, function (ev){
        instance.runHooks(‘afterDocumentKeyDown‘, ev);
      });


2.注释掉1199,1202行,如下

  /**
   * Listen to document body keyboard input
   */
  this.listen = function () {
    Handsontable.activeGuid = instance.guid;

    if (document.activeElement && document.activeElement !== document.body) {
      //document.activeElement.blur();
    }
    else if (!document.activeElement) { //IE
      //document.body.focus();
    }
  };


推荐一个好的表格插件,handsontable

标签:handsontable 中文自动完成

原文地址:http://ustb80.blog.51cto.com/6139482/1596319

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!