summaryrefslogtreecommitdiffstats
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, 26 insertions, 0 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
new file mode 100644
index 000000000..8ed4fe7f0
--- /dev/null
+++ b/sdnr/wt/devicemanager/provider/src/test/resources/elasticsearch/plugins/head/src/app/ui/panelForm/panelForm.js
@@ -0,0 +1,26 @@
+(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 );