码迷,mamicode.com
首页 >  
搜索关键字:handsontable 中文自动完成    ( 41个结果
handsontable-cell features
数据验证:在columns中设置validator,进行同步或异步验证,还可添加beforeValidate, afterValidate函数,allowInvalid:true可以不用验证var people = [ {id: 1, name: {first: 'Joe', last: ...
分类:其他好文   时间:2015-07-19 16:18:32    阅读次数:109
handsontable-常用配置
冻结单元格var //自动创建数据 myData = Handsontable.helper.createSpreadsheetData(100, 50), container = document.getElementById('example1'), positions ...
分类:其他好文   时间:2015-07-19 09:58:50    阅读次数:2954
handsontable-developer guide-cell type
单元格类型:这里有很多没见过的用法,得好好总结一下//预定义的类型TextNumericCheckboxDateSelectDropdownAutocompletePasswordHandsontable in HandsontableCustomvar data = [ {id: 1, na...
分类:其他好文   时间:2015-07-18 10:58:57    阅读次数:464
handsontable-developer guide-cell editor
单元格编辑cell editorrenderer:展示数据;editor:改变数据;renderer用一个函数表示;后者有一系列的操作,需要用class来表示;EditorManagerhandsontable()--init()--EditorManage实例化1、选择editorcolumns中...
分类:其他好文   时间:2015-07-18 10:56:27    阅读次数:343
handsontable-developer guide-cell function
renderer展示的数据不是来自于数据源,而是先把DOM和其他信息传给renderer,然后展示。//五种展示函数TextRenderer: defaultNumericRendererAutocompleteRendererCheckboxRendererPasswordRenderer自己不能...
分类:其他好文   时间:2015-07-18 10:55:55    阅读次数:314
handsontable-developer guide-setting options,callback
1、cell数组cell: [ {row: 0, col: 0, readOnly: true}]2、cells函数cells: function(row, col, prop){ var cellProperties = {}; if(row === 0 && col === 0){ cellP....
分类:其他好文   时间:2015-07-18 10:54:59    阅读次数:199
handsontable-developer guide-data binding,data sources
数据绑定:1、表格中得数据是引用了数据源中的数据:表格中数据改变,数据源中得数据也改变;数据源中得数据改变,通过render方法,表格中的数据也改变;2、如果想把数据源中的数据和表格中的数据分开:JSON.parse(JSON.stringify(data2))3、保存之前clone表格,使用aft...
分类:其他好文   时间:2015-07-18 10:51:48    阅读次数:256
handsontable-developer guide-load and save
不过handsontable不能用jquery取对象var $$ = function(id) { return document.getElementById(id); }, container = $$('example1'), exampleConsole = $$('examp...
分类:其他好文   时间:2015-07-18 10:50:22    阅读次数:249
handsontable
---恢复内容开始---很像excel的jquery插件。关于它的中文资料不多,自己只能看看英文的了。记录如下:数据绑定:1、更新局部数据,需要使用render方法;2、如果引用的数据是:JSON.parse(JSON.stringify(data2)),则不会被更改3、保存之前clone表格,使用...
分类:其他好文   时间:2015-07-12 00:05:47    阅读次数:968
handsontable 和 echarts都定义了require方法,初始化时冲突了,怎么办?
echarts require.config is not a function
分类:其他好文   时间:2015-06-18 09:25:03    阅读次数:159
41条   上一页 1 2 3 4 5 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!