Handsontable

来源:互联网 发布:天猫总是提示网络异常 编辑:程序博客网 时间:2024/06/01 10:35

Handsontable使用

1.自动填充    fillHandle:true/false2.合并单元格    mergeCells:[{row,cols,rowspan,colspan}]3.单元格对齐方式    水平        hLeft,htCenter,hRight,htJustify    垂直        htTop,hdMiddle,hBotton4.只读    列        readonly:true    单元格        cellProperties,readOnly:true5.类型单元格    text,numberic,date,checkbox,password    select:下拉    columns:[        {editor:'select',        selectOption:[A,B,C...]},    ]6.选中触发事件    afterChange:function(){        var tmpData=JSON.parse(JSON.stringify(data));    }7.其他设置    标题        rowHeaders:true        colHeaders:true    重新加载数据        data[0][1]='Ford'        hot.render();    数据不变        data:JSON.parse(JSON.stringify(data))
0 0