摘要: 一. 加载方式消息窗口提供了不同的消息框风格,包含 alert(警告框)、confirm(确认框)、prompt(提示框)、progress(进度框)等。所有消息框都是异步的,用户可以在交互消息之后使用回调函数去处理结果。由于这个组件的特殊性,没有 class 加载方式,全部在 JS 端完成!二.属... 阅读全文
posted @ 2015-11-30 22:21 琴似蓝调 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式对话框//JS 加载调用$('#box').dialog({title : '标题',width : 400,height : 250,modal : true,});二. 属性列表窗口属性扩展自 Window(面板),窗口新增或重新定义的属性如下://属性设置... 阅读全文
posted @ 2015-11-30 22:02 琴似蓝调 阅读(995) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式窗口//JS 加载调用$('#box').window({width : 600,height : 400,modal : true,});二. 属性列表窗口属性扩展自 Panel(面板),窗口新增或重新定义的属性如下://属性设置$('#box').windo... 阅读全文
posted @ 2015-11-30 20:55 琴似蓝调 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式//JS 加载调用$('#box').layout({fit : true,});二. 布局属性//属性设置$('#box').layout({fit : true,});三. 区域面板属性区域面板属性定义与 panel 组件类型,下面是公共和新增的属性四.方法... 阅读全文
posted @ 2015-11-30 20:28 琴似蓝调 阅读(1904) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式accordion1accordion2accordion3//JS 加载调用$('#box').accordion({//...});二.容器属性//属性设置$('#box').accordion({width : 500,height : 500,fit :... 阅读全文
posted @ 2015-11-30 16:39 琴似蓝调 阅读(995) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式tab1tab2tab3//JS 加载调用$('#box').tabs({//...});二.属性列表//属性设置$('#box').tabs({width : 500,height : 300,plain : true,fit : true,border : ... 阅读全文
posted @ 2015-11-30 15:59 琴似蓝调 阅读(5021) 评论(0) 推荐(1) 编辑
摘要: 一. 加载方式//class 加载方式内容区域//JS 加载调用$('#box').panel({width:500,height:150,title : '面板',closable : true,});二. 属性列表//属性设置$('#box').panel({width : 500,height... 阅读全文
posted @ 2015-11-30 11:06 琴似蓝调 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式//JS 加载调用$('#box').progressbar({value : 60,});二. 属性列表//属性设置$('#box').progressbar({width : 400,height : 30,value : 60,text : '{value... 阅读全文
posted @ 2015-11-30 10:36 琴似蓝调 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 一. 加载方式//class 加载方式按钮//JS 加载调用$('#box').linkbutton({text : '提交',});2属性列表//属性设置$('#box').linkbutton({id : 'pox',disabled : true,toggle : true,selected ... 阅读全文
posted @ 2015-11-30 10:16 琴似蓝调 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 一.加载方式//class加载方式Hover Me //JS 加载调用$('#box').tooltip({content : '这里可以输入提示内容', });二.属性列表//属性设置$('#box').tooltip({position : 'top',content : '这里可以输入提示内容... 阅读全文
posted @ 2015-11-30 00:58 琴似蓝调 阅读(958) 评论(0) 推荐(0) 编辑