Subversion Repositories Applications.papyrus

Rev

Rev 1372 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1372 Rev 1422
Line 6... Line 6...
6
	modified BSD license. For more information on Dojo licensing, see:
6
	modified BSD license. For more information on Dojo licensing, see:
Line 7... Line 7...
7
 
7
 
8
		http://dojotoolkit.org/community/licensing.shtml
8
		http://dojotoolkit.org/community/licensing.shtml
Line -... Line 9...
-
 
9
*/
-
 
10
 
9
*/
11
 
10
 
12
 
11
dojo.provide("dojo.widget.TreeSelectorV3");
13
dojo.provide("dojo.widget.TreeSelectorV3");
12
dojo.require("dojo.widget.HtmlWidget");
14
dojo.require("dojo.widget.HtmlWidget");
13
dojo.require("dojo.widget.TreeCommon");
15
dojo.require("dojo.widget.TreeCommon");
Line 44... Line 46...
44
		if (this.selectedNode && message.node.children) {
46
		if (this.selectedNode && message.node.children) {
45
			this.deselectIfAncestorMatch(message.node);
47
			this.deselectIfAncestorMatch(message.node);
46
		}
48
		}
47
	}
49
	}
48
}, initialize:function (args) {
50
}, initialize:function (args) {
49
	for (name in this.eventNamesDefault) {
51
	for (var name in this.eventNamesDefault) {
50
		if (dojo.lang.isUndefined(this.eventNames[name])) {
52
		if (dojo.lang.isUndefined(this.eventNames[name])) {
51
			this.eventNames[name] = this.widgetId + "/" + this.eventNamesDefault[name];
53
			this.eventNames[name] = this.widgetId + "/" + this.eventNamesDefault[name];
52
		}
54
		}
53
	}
55
	}
54
}, onBeforeTreeDestroy:function (message) {
56
}, onBeforeTreeDestroy:function (message) {