easyUI 笔记

来源:互联网 发布:ubuntu uefi启动盘 编辑:程序博客网 时间:2024/05/16 11:37

1. HTML 标签属性 data-options 里面的子属性,在 js里面操作的方法-->花括弧,json对象。

如 :

$('#tt').tabs('add',{    title: obj.innerHTML,    content: '<div style="padding:10px">Content'+obj.innerHTML+'</div>',    closable: true,    iconCls:'icon-reload',    tools:[{        iconCls:'icon-mini-refresh',        handler:function(){            alert('refresh');        }    }]});
花括弧内容等价于在data-options 里头的属性内容.

<div data-options="region:'center',title:'Center'" >


2. 官网的demo例子贴过来能用,具体方法,属性,事件,继承关系得看documentations. 尤其是继承关系,比如tab继承panel, 所有panel的属性均适合tab.(如设置tab的小图标)


0 0
原创粉丝点击