Lines Matching refs:element
19 function (element, options) { argument
20 element.winControl = this;
21 this.element = element;
23 new WinJS.Utilities.QueryCollection(element)
26 element.id = "input";
28 this.addInputLabel(element);
29 this.addDetailsElement(element);
30 this.addScenariosPicker(element);
32 addInputLabel: function (element) { argument
36 element.parentNode.insertBefore(label, element);
77 function (element, options) { argument
78 element.winControl = this;
79 this.element = element;
80 new WinJS.Utilities.QueryCollection(element)
84 element.id = "output";
86 this._addOutputLabel(element);
87 this._addStatusOutput(element);
89 _addOutputLabel: function (element) { argument
93 element.parentNode.insertBefore(label, element);
95 _addStatusOutput: function (element) { argument
99 element.insertBefore(statusDiv, element.childNodes[0]);
135 ready: function (element, options) { argument
137 var selectElement = WinJS.Utilities.query("#scenarioSelect", element);