dojo如何让Portlet隐藏在Closable Property上?

时间:2014-08-30 08:52:15

标签: dojo

我正在使用Dojo开发一个项目。我正在使用Gridcontainer和Portlet。我有个问题。我在Closable Portlet的属性中将值设置为true。当我点击关闭按钮时将隐藏Portlet。我想获取隐藏的Portlet的信息。请帮帮我!!!!

1 个答案:

答案 0 :(得分:0)

隐藏portlet的哪些信息?仍可从dijit/registry模块访问portlet,例如:

registry.byId("myGrid").addChild(new Portlet({
    id: "portlet1",
    title: "My portlet",
    content: "My portlet content",
    closable: true
}), 0, 1);

registry.byId("myBtn").on("click", function() {
     console.log(registry.byId("portlet1"));   
});

哪个应该返回portlet小部件对象,包含它拥有的所有信息 示例:http://jsfiddle.net/pajpne39/