Greetings,
I am currently developing under the chassis-ui and chassis-service projects. I added a new summary view which creates an iFrame to show content from the following address "https://141.112.13.213/auth.asp".
The iframe populates nicely. After the adding an exception to the address on my browser, the window redirects to the address every time I open the tab.
Is there any option or alternative method to implementing this? If so, could you please provide an example.
Thank you!
here is a snippet of FrameView.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:HBox
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:flexiframe="http://code.google.com/p/flex-iframe/"
xmlns="*"
creationComplete="iFrame.visible=true"
>
<flexiframe:IFrame id="iFrame"
source="https://141.112.13.213/auth.asp"
width="100%"
height="100%"
debug='true'
visible='true'
/>
</mx:HBox>