|
@@ -65,8 +65,6 @@ define([
|
|
|
baseClass: "DFUWUQueryWidget",
|
|
|
workunitsTab: null,
|
|
|
workunitsGrid: null,
|
|
|
- legacyPane: null,
|
|
|
- legacyPaneLoaded: false,
|
|
|
|
|
|
tabMap: [],
|
|
|
|
|
@@ -74,7 +72,6 @@ define([
|
|
|
this.inherited(arguments);
|
|
|
this.workunitsTab = registry.byId(this.id + "_Workunits");
|
|
|
this.workunitsGrid = registry.byId(this.id + "WorkunitsGrid");
|
|
|
- this.legacyPane = registry.byId(this.id + "_Legacy");
|
|
|
this.clusterTargetSelect = registry.byId(this.id + "ClusterTargetSelect");
|
|
|
},
|
|
|
|
|
@@ -196,7 +193,6 @@ define([
|
|
|
return;
|
|
|
this.initalized = true;
|
|
|
|
|
|
- this.selectChild(this.legacyPane, true);
|
|
|
this.clusterTargetSelect.init({
|
|
|
Groups: true,
|
|
|
includeBlank: true
|
|
@@ -207,14 +203,6 @@ define([
|
|
|
var currSel = this.getSelectedChild();
|
|
|
if (currSel && !currSel.initalized) {
|
|
|
if (currSel.id == this.workunitsTab.id) {
|
|
|
- } else if (currSel.id == this.legacyPane.id) {
|
|
|
- if (!this.legacyPaneLoaded) {
|
|
|
- this.legacyPaneLoaded = true;
|
|
|
- this.legacyPane.set("content", dojo.create("iframe", {
|
|
|
- src: "/WsDfu/DFUQuery",
|
|
|
- style: "border: 0; width: 100%; height: 100%"
|
|
|
- }));
|
|
|
- }
|
|
|
} else {
|
|
|
if (!currSel.initalized) {
|
|
|
currSel.init(currSel._hpccParams);
|