The js file contains specific JavaScript code that implements a widget as an element of the user interface. In this page examples are shown of how to extend existing widgets and implement the changes by registering them as new widget classes.
Overview
The js files contain functions for rendering the widget template file (.tpl.html
) and dynamically building the DOM element. If you wish to customize a widget, you need to extend the standard widget class in a new widget js file contained in your customization project directory.
The js is associated with a template file, which needs to use the same name.
NOTE: If the template file does not have the same name as the js, it can be referenced explicitly in the code using the
__templateName
value.
Extending a basic widget
This sample code shows the minimal code you need to extend a basic widget in js
.
"use strict";
modulum('newWidget', ['baseWidget', 'WidgetFactory'],
function(context, cls) {
cls.newWidget = context.oo.Class(cls.baseWidget, function($super) {
return {
__name: "newWidget",
/* your custom code */
};
});
cls.WidgetFactory.register('widgetType', cls.newWidget);
});
where:
newWidget
is your custom widgetbaseWidget
is the built-in widget that it extendswidgetType
is the widget representation (node name) in the AUI tree.
Extending a basic widget and registering a new widget style
Register a new widget style to allow for selective application of your customization as specified by the style settings in your form source.
"use strict";
modulum('newWidget', ['baseWidget', 'WidgetFactory'],
function(context, cls) {
cls.newWidget = context.oo.Class(cls.baseWidget, function($super) {
return {
__name: "newWidget",
/* your custom code */
};
});
cls.WidgetFactory.register('widgetType', ‘widgetStyle’, cls.newWidget);
});
where:
newWidget
is your custom widgetbaseWidget
is the built-in widget that it extendswidgetType
is the widget representation (node name) in the AUI tree.widgetStyle
is the style name.
The widgetStyle
argument (optional) allows you to reference your widget in your Genero form source. For example, in this form (.per
) file snippet, the style "widgetStyle" is applied to the defined Edit form field:
EDIT f01 = formonly.edit, STYLE=”widgetStyle”;
Only fields with the style applied will be customized.
Example: Extending a simple widget
For simple widget customization, you can extend the Edit widget as an example, in a file <GBC_PROJECT_DIR>/customization/<customization_project_dir>/js/MyEditWidget.js
, like:
"use strict";
modulum('MyEditWidget', ['EditWidget', 'WidgetFactory'],
function(context, cls) {
/**
* Edit widget.
* @class classes.MyEditWidget
* @extends classes.EditWidget
*/
cls.MyEditWidget = context.oo.Class(cls.EditWidget, function($super) {
/** @lends classes.MyEditWidget.prototype */
return {
__name: "MyEditWidget".
setTitle: function(title) {
$(this.getElement()).find(".title").text(title);
},
getTitle: function() {
return $(this.getElement()).find(".title").text();
}
};
});
cls.WidgetFactory.registerBuilder('Edit', cls.MyEditWidget);
});
And a template file <GBC_PROJECT_DIR>/customization/<customization_project_dir>/js/MyEditWidget.tpl.html
, like:
<div>
<div class="title"></div>
<div class="gbc_dataContentPlaceholder">
<input type="text" />
</div>
</div>
This customization extends the built-in EditWidget. You can reference an element in the HTML template for the widget by using the this.getElement()
function.
Example: Extending a container widget
For container widget customization, you can set for example a file <GBC_PROJECT_DIR>/customization/<customization_project_dir>/js/MyComposedWidget.js
.
"use strict";
modulum('MyComposedWidget', ['WidgetGroupBase', 'WidgetFactory'],
function(context, cls) {
cls.MyComposedWidget = context.oo.Class(cls.WidgetGroupBase, function($super) {
/** @lends classes.MyComposedWidget.prototype */
return {
__name: "MyComposedWidget",
_label: null,
_edit: null,
constructor: function() {
$super.constructor.call(this);
this._label = cls.WidgetFactory.createWidget('Label');
this._edit = cls.WidgetFactory.createWidget('Edit');
this.addChildWidget(this._label);
this.addChildWidget(this._edit);
},
[...]
destroy: function() {
this.removeChildWidget(this._label);
this.removeChildWidget(this._edit);
this._label.destroy();
this._label = null;
this._edit.destroy();
this._edit = null;
$super.destroy();
},
[...]
};
});
cls.WidgetFactory.registerBuilder('MyComposed', cls.MyComposedWidget);
});
For a Container widget, the root base widget is always WidgetGroupBase
. You add the child elements with this.addChildWidget
and remove child elements with this.removeChildWidget
.