I'm trying to create a small ExtJS app (main app) that displays other apps (secondary apps) in a panel. I can load the index file of the apps but the js scripts are not loaded. The secondary apps are already built. Does anyone know how I should properly load the secondary apps? Thank you
This is my main app's view:
Ext.define('POCs.view.Main', {
extend: 'Ext.container.Container',
requires: [
'POCs.controller.MainController',
//'POCs.view.MainModel'
],
xtype: 'app-main',
controller: 'main',
viewModel: {
type: 'main'
},
layout: {
type: 'border'
},
items: [{
xtype: 'panel',
region: 'west',
items:[{
xtype: 'button',
width:200,
fontWeight: "bold",
itemId: 'err',
margin:20,
html: 'POC1',
bodyPadding: 10,
handler: 'onErrButton'
},
{ width:200,
xtype: 'button',
fontWeight: 'bold',
itemId: 'per',
margin:20,
html: 'POC2',
bodyPadding: 10,
//handler: 'onPerButton'
}
],
width: 250,
split: true,
},{
region: 'center',
xtype: 'panel',
id: 'canvas1',
name: 'Canvas1'
},
{
region: 'north',
xtype: 'panel',
split:true,
items:[{
region:'west',
xtype:'image',
src:'logo.jpg'
},
{
region:'center',
html: '<h2>Proofs of concept</h2>',
margin:"0 0 0 50",
}]
}]
});
And this is the controller:
Ext.define('POCs.controller.MainController', {
extend: 'Ext.app.ViewController',
requires: [
'Ext.MessageBox'
],
alias: 'controller.main',
config: {
refs: {
canvas1: '#canvas1',
}
},
init: function() {
var me=this;
me.control({
'#per': {
click: this.onPerButton,
}
});
},
onErrButton: function () {
Ext.Msg.confirm('Confirm', 'Are you sure?', 'onConfirm', this);
},
onPerButton: function () {
Ext.Ajax.request ({
url: 'ap3init/index.html',
scripts:true,
autoLoad:true,
success: function(response) {
var htmlText= response.responseText;
var cp1 = Ext.getCmp('canvas1').setHtml(htmlText);
//setHtml only sets the html but doesn't activate the scripts
}
});
},
onSecButton: function () {
Ext.Msg.confirm('Confirm', 'Are you sure?', 'onConfirm', this);
},
onSpcnButton: function () {
Ext.Msg.confirm('Confirm', 'Are you sure?', 'onConfirm', this);
},
onSpcoButton: function () {
Ext.Msg.confirm('Confirm', 'Are you sure?', 'onConfirm', this);
},
onConfirm: function (choice) {
if (choice === 'yes') {
//
}
}
});