随笔分类 -  easyui

摘要:一. 加载方式//class 加载方式编辑撤销恢复剪切复制粘贴删除全选//JS 加载方式$('#box').menu({});二.属性列表//属性列表,其他属性,参考依赖组件 LinkButton$('#edit').menubutton({plain : false,menu : '#box',d... 阅读全文
posted @ 2015-12-01 11:29 琴似蓝调 阅读(1153) 评论(0) 推荐(0)
摘要:一. 加载方式菜单组件通常用于快捷菜单,在加载方式上,通过 class 或 JS 进行设置为菜单组件。然后,再通过 JS 事件部分再响应。//class 加载方式新建打开WordExcelPowerPoint保存退出//JS 加载方式$('#box').menu({});//鼠标右击事件弹出菜单$(... 阅读全文
posted @ 2015-12-01 11:01 琴似蓝调 阅读(493) 评论(0) 推荐(0)
摘要:一. 加载方式消息窗口提供了不同的消息框风格,包含 alert(警告框)、confirm(确认框)、prompt(提示框)、progress(进度框)等。所有消息框都是异步的,用户可以在交互消息之后使用回调函数去处理结果。由于这个组件的特殊性,没有 class 加载方式,全部在 JS 端完成!二.属... 阅读全文
posted @ 2015-11-30 22:21 琴似蓝调 阅读(580) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式对话框//JS 加载调用$('#box').dialog({title : '标题',width : 400,height : 250,modal : true,});二. 属性列表窗口属性扩展自 Window(面板),窗口新增或重新定义的属性如下://属性设置... 阅读全文
posted @ 2015-11-30 22:02 琴似蓝调 阅读(1015) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式窗口//JS 加载调用$('#box').window({width : 600,height : 400,modal : true,});二. 属性列表窗口属性扩展自 Panel(面板),窗口新增或重新定义的属性如下://属性设置$('#box').windo... 阅读全文
posted @ 2015-11-30 20:55 琴似蓝调 阅读(273) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式//JS 加载调用$('#box').layout({fit : true,});二. 布局属性//属性设置$('#box').layout({fit : true,});三. 区域面板属性区域面板属性定义与 panel 组件类型,下面是公共和新增的属性四.方法... 阅读全文
posted @ 2015-11-30 20:28 琴似蓝调 阅读(1934) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式accordion1accordion2accordion3//JS 加载调用$('#box').accordion({//...});二.容器属性//属性设置$('#box').accordion({width : 500,height : 500,fit :... 阅读全文
posted @ 2015-11-30 16:39 琴似蓝调 阅读(1012) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式tab1tab2tab3//JS 加载调用$('#box').tabs({//...});二.属性列表//属性设置$('#box').tabs({width : 500,height : 300,plain : true,fit : true,border : ... 阅读全文
posted @ 2015-11-30 15:59 琴似蓝调 阅读(5057) 评论(0) 推荐(1)
摘要:一. 加载方式//class 加载方式内容区域//JS 加载调用$('#box').panel({width:500,height:150,title : '面板',closable : true,});二. 属性列表//属性设置$('#box').panel({width : 500,height... 阅读全文
posted @ 2015-11-30 11:06 琴似蓝调 阅读(1140) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式//JS 加载调用$('#box').progressbar({value : 60,});二. 属性列表//属性设置$('#box').progressbar({width : 400,height : 30,value : 60,text : '{value... 阅读全文
posted @ 2015-11-30 10:36 琴似蓝调 阅读(707) 评论(0) 推荐(0)
摘要:一. 加载方式//class 加载方式按钮//JS 加载调用$('#box').linkbutton({text : '提交',});2属性列表//属性设置$('#box').linkbutton({id : 'pox',disabled : true,toggle : true,selected ... 阅读全文
posted @ 2015-11-30 10:16 琴似蓝调 阅读(635) 评论(0) 推荐(0)
摘要:一.加载方式//class加载方式Hover Me //JS 加载调用$('#box').tooltip({content : '这里可以输入提示内容', });二.属性列表//属性设置$('#box').tooltip({position : 'top',content : '这里可以输入提示内容... 阅读全文
posted @ 2015-11-30 00:58 琴似蓝调 阅读(975) 评论(0) 推荐(0)
摘要:一.加载方式//class 加载方式//JS 加载调用 $('#box').resizable({ maxWidth:800, maxHeight:600, });二.属性列表//属性设置$('#rr').resizable({ disabled : true, handles : 'se', mi... 阅读全文
posted @ 2015-11-29 23:34 琴似蓝调 阅读(678) 评论(0) 推荐(0)
摘要:.加载方式//class 加载方式//JS 加载调用$('#box').droppable({accept:'#box,#pox',});属性列表Draggable 属性//属性设置$('#dd').droppable({accept : '#box', disabled : true,});三.事... 阅读全文
posted @ 2015-11-29 22:47 琴似蓝调 阅读(342) 评论(0) 推荐(0)
摘要:1 一.加载方式2 //class 加载方式 3 4 内容部分 5 6 7 //JS 加载调用8 9 $('#box').draggable();加载方式属性列表//属性设置$('#box').draggable({revert : true,cursor : 'text',handle : ... 阅读全文
posted @ 2015-11-29 16:53 琴似蓝调 阅读(1041) 评论(0) 推荐(0)
摘要:1 //引入 jQuery 核心库,这里采用的是 2.0 //引入 jQuery EasyUI 核心库,这里采用的是 1.3.6 2 //引入 EasyUI 中文提示信息 3 //引入自己开发的 JS 文件 4 //引入 EasyUI 核心 UI 文件 CSS 5 //引入 EasyUI ... 阅读全文
posted @ 2015-11-29 16:31 琴似蓝调 阅读(383) 评论(0) 推荐(0)