上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 26 下一页
2015年7月26日

医疗数据分析

摘要: 医疗数据分析 项目描述:对医疗数据进行管理 查看 分析。 用到的技术: 使用jstree对数据进行树形菜单管理;使用handsontable以表格的形式呈现数据; 后台使用docker php apache mysql R 前端使用jquery bootstrap 熟悉了Linux的操作 阅读全文
posted @ 2015-07-26 23:56 j.w 阅读(422) 评论(0) 推荐(0) 编辑
2015年7月20日

handsontable-appearance

摘要: 条件格式化自定义边框 阅读全文
posted @ 2015-07-20 11:17 j.w 阅读(145) 评论(0) 推荐(0) 编辑

handsontable-cell type

摘要: 在单元格中呈现自定义的元素:不能使用html元素var data = [ { title: "Professional JavaScript for Web Developers", description: "This book provides a d... 阅读全文
posted @ 2015-07-20 11:15 j.w 阅读(1291) 评论(0) 推荐(0) 编辑
2015年7月19日

handsontable-cell features

摘要: 数据验证:在columns中设置validator,进行同步或异步验证,还可添加beforeValidate, afterValidate函数,allowInvalid:true可以不用验证var people = [ {id: 1, name: {first: 'Joe', last: ... 阅读全文
posted @ 2015-07-19 15:05 j.w 阅读(1759) 评论(1) 推荐(0) 编辑

handsontable-常用配置

摘要: 冻结单元格var //自动创建数据 myData = Handsontable.helper.createSpreadsheetData(100, 50), container = document.getElementById('example1'), positions ... 阅读全文
posted @ 2015-07-19 09:17 j.w 阅读(4370) 评论(0) 推荐(0) 编辑
2015年7月18日

handsontable-developer guide-cell function

摘要: renderer展示的数据不是来自于数据源,而是先把DOM和其他信息传给renderer,然后展示。//五种展示函数TextRenderer: defaultNumericRendererAutocompleteRendererCheckboxRendererPasswordRenderer自己不能... 阅读全文
posted @ 2015-07-18 10:21 j.w 阅读(720) 评论(0) 推荐(0) 编辑

handsontable-developer guide-cell editor

摘要: 单元格编辑cell editorrenderer:展示数据;editor:改变数据;renderer用一个函数表示;后者有一系列的操作,需要用class来表示;EditorManagerhandsontable()--init()--EditorManage实例化1、选择editorcolumns中... 阅读全文
posted @ 2015-07-18 10:18 j.w 阅读(1439) 评论(0) 推荐(0) 编辑

handsontable-developer guide-cell type

摘要: 单元格类型:这里有很多没见过的用法,得好好总结一下//预定义的类型TextNumericCheckboxDateSelectDropdownAutocompletePasswordHandsontable in HandsontableCustomvar data = [ {id: 1, na... 阅读全文
posted @ 2015-07-18 10:17 j.w 阅读(468) 评论(0) 推荐(0) 编辑

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... 阅读全文
posted @ 2015-07-18 10:16 j.w 阅读(309) 评论(1) 推荐(0) 编辑

handsontable-developer guide-load and save

摘要: 不过handsontable不能用jquery取对象var $$ = function(id) { return document.getElementById(id); }, container = $$('example1'), exampleConsole = $$('examp... 阅读全文
posted @ 2015-07-18 10:15 j.w 阅读(573) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 26 下一页