sdk - In Rally, is it possible to dynamically change script source so that I can load multiple apps? -




i have drop down of app names (or url parameter) , load app on select: like:

ext.define('testpage', {     extend: 'rally.app.app',     items: [{         xtype: 'container',         id: "appdiv"     }],     launch: function () {         var me = this;         me.add({             xtype: 'box',             autoel: {                 tag: 'iframe',                 src: 'https://rally-apps.com/test.cfd.html',                 width: 1020,                 height: 1000             }         });     }  });  

but error: blocked frame origin https://rally-apps.com" accessing cross-origin frame. there other way can achieve this?

that error standard browser security limitation, code in 1 domain cannot access code in one. may able work around instead making ajax request url load app content , injecting current app. hard say.

the other idea comes mind adding these apps subscription app catalog, can add them pages like...





wiki

Comments

Popular posts from this blog

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -

Asterisk AGI Python Script to Dialplan does not work -