aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js')
-rw-r--r--sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js b/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js
deleted file mode 100644
index 8ed4fe7f0..000000000
--- a/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js
+++ /dev/null
@@ -1,26 +0,0 @@
-(function( $, app ) {
-
- var ui = app.ns("ui");
- var ut = app.ns("ut");
-
- ui.PanelForm = ui.AbstractWidget.extend({
- defaults: {
- fields: null // (required) instanceof app.ux.FieldCollection
- },
- init: function(parent) {
- this._super();
- this.el = $.joey(this._main_template());
- this.attach( parent );
- },
- _main_template: function() {
- return { tag: "DIV", id: this.id(), cls: "uiPanelForm", children: this.config.fields.fields.map(this._field_template, this) };
- },
- _field_template: function(field) {
- return { tag: "LABEL", cls: "uiPanelForm-field", children: [
- { tag: "DIV", cls: "uiPanelForm-label", children: [ field.label, ut.require_template(field) ] },
- field
- ]};
- }
- });
-
-})( this.jQuery, this.app );