- 注册时间
- 2013-2-19
- 最后登录
- 2013-7-2
- 阅读权限
- 10
- 积分
- 169
- 精华
- 0
- 帖子
- 46
|
本帖最后由 den253176 于 2013-6-18 08:30 编辑
var portal = new mini.ux.Portal();
portal.set({
style: "width: 100%;height:400px",
columns: [250, "100%", 250]
});
portal.render(document.body);
//panel
portal.setPanels([
{ column: 0, id: "p1", title: "panel1", showCloseButton: true, body: "#Button1" },
{ column: 0, id: "p2", title: "panel2", showCollapseButton: true, height: 150 },
{ column: 1, id: "p3", title: "panel3", showCloseButton: true },
{ column: 1, id: "p4", title: "panel4", showCollapseButton: true },
{ column: 2, id: "p5", title: "panel5", showCloseButton: true },
{ column: 2, id: "p6", title: "panel6", showCollapseButton: true }
]);
是能否获取到title 值,能要怎么获取到
|
|