Christopher Dembek
03/08/2021, 2:42 AMvar SCFormView = FormViewModule.SCFormView;
function MyCustomFormView(options)
{
SCFormView.call(this, options.model);
this.options = options;
this.childViews = {
'childViewA': function ()
{
return new childViewA({
options: this.options
});
},
'childViewB': function ()
{
return new childViewB({
options: this.options,
});
}
};
this.template = my_form_view_tpl;
}
Steve Goldberg
03/08/2021, 11:26 AM