Integrator Frames
Names

Corner (MapGuide Only)
Left
Report
Run (hidden frame if you need to run some code behind the scenes)
For example I made a page called custommenu3.cfm in a
Custom folder on the GISWEB root. I added this page as module (../Custom.custommenu3.cfm) and now I can control the frame
from this custom menu item. Here is the sample code.
<script
language="JavaScript">
function frameworkexample(sTEXT) {
top.frames['Main'].window.location='Blank.cfm';
top.frames['Main'].document.writeln(sTEXT);
}
</script>
<input type="button" value="GO" OnClick="frameworkexample('Passing Variable Example');">
End
result:
