Subversion Repositories Applications.papyrus

Rev

Rev 1371 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1318 alexandre_ 1
/*
2
	Copyright (c) 2004-2006, The Dojo Foundation
3
	All Rights Reserved.
4
 
5
	Licensed under the Academic Free License version 2.1 or above OR the
6
	modified BSD license. For more information on Dojo licensing, see:
7
 
8
		http://dojotoolkit.org/community/licensing.shtml
9
*/
10
 
11
dojo.provide("dojo.widget.Toggler");
12
dojo.require("dojo.widget.*");
13
dojo.require("dojo.event.*");
14
dojo.widget.defineWidget("dojo.widget.Toggler", dojo.widget.HtmlWidget, {targetId:"", fillInTemplate:function () {
15
	dojo.event.connect(this.domNode, "onclick", this, "onClick");
16
}, onClick:function () {
17
	var pane = dojo.widget.byId(this.targetId);
18
	if (!pane) {
19
		return;
20
	}
21
	pane.explodeSrc = this.domNode;
22
	pane.toggleShowing();
23
}});
24