首页 > 代码库 > 推荐一个好的表格插件,handsontable
推荐一个好的表格插件,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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。