-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFieldset.js
48 lines (47 loc) · 1.5 KB
/
Fieldset.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
define(["dojo/_base/declare", "dojo/dom-construct", "dojo/query", "dijit/_WidgetBase", "dijit/_TemplatedMixin", "dojo/text!./templates/Fieldset.html"], function(declare, domConstruct, query, WidgetBase, TemplatedMixin, template) {
return declare([WidgetBase, TemplatedMixin], {
//Some value to map legend of fieldset.
legend: '',
id: '',
//Some string value of class.
customClass: '',
templateString: template,
postCreate: function() {
this.inherited(arguments);
},
buildRendering: function() {
this.inherited(arguments);
if(!this.fieldsetNode) {
// all widgets with descendants must set fieldsetNode
this.fieldsetNode = this.domNode;
}
},
addChild: function(widget, insertIndex) {
var refNode = this.fieldsetNode.children[0];
if(insertIndex && typeof insertIndex == "number") {
var children = this.getChildren();
if(children && children.length >= insertIndex) {
refNode = children[insertIndex - 1].domNode;
insertIndex = "after";
}
}
domConstruct.place(widget.domNode, refNode, insertIndex);
widget.startup();
},
removeChild: function( /*Widget|integer*/ widget) {
if(typeof widget == "number") {
widget = this.getChildren()[widget];
}
if(widget) {
var node = widget.domNode;
if(node && node.parentNode) {
node.parentNode.removeChild(node); // detach but don't destroy
}
}
},
destroy: function() {
delete this.fieldsetNode;
this.inherited(arguments);
}
});
});