-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTabContainerExtended.js
57 lines (47 loc) · 2.33 KB
/
TabContainerExtended.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
define (['dojo/_base/declare', 'dijit/layout/TabContainer', 'dojo/dom-class', "dojo/topic",
"dojo/when", "dijit/registry"], function (declare, TabContainer, domClass, topic, when, registry) {
return declare('dijitx.widget.TabContainerExtended', [TabContainer], {
buildRendering: function () {
this.inherited(arguments);
},
selectChild: function(/*dijit/_WidgetBase|String*/ page, /*Boolean*/ animate){
// console.log("this in StackContainer",this)
// // summary:
// // Show the given widget (which must be one of my children)
// // page:
// // Reference to child widget or id of child widget
// var d;
// page = registry.byId(page);
// if(this.selectedChildWidget != page){
// // Deselect old page and select new one
// d = this._transition(page, this.selectedChildWidget, animate);
// this._set("selectedChildWidget", page);
// topic.publish(this.id + "-selectChild", page); // publish
// if(this.persist){
// cookie(this.id + "_selectedChild", this.selectedChildWidget.id);
// }
// }
// // d may be null, or a scalar like true. Return a promise in all cases
// return when(d || true); // Promise
},
extendedSelectChild: function(/*dijit/_WidgetBase|String*/ page, /*Boolean*/ animate){
// summary:
// Show the given widget (which must be one of my children)
// page:
// Reference to child widget or id of child widget
var d;
page = registry.byId(page);
if(this.selectedChildWidget != page){
// Deselect old page and select new one
d = this._transition(page, this.selectedChildWidget, animate);
this._set("selectedChildWidget", page);
topic.publish(this.id + "-selectChild", page); // publish
if(this.persist){
cookie(this.id + "_selectedChild", this.selectedChildWidget.id);
}
}
// d may be null, or a scalar like true. Return a promise in all cases
return when(d || true); // Promise
}
})
})