Loading...
Mark´s Playpen Integrating ExtJS javascript library with Oracle Application Express
APEX_PUBLIC_USER
Value
Rows Displayed
Instructions
Embedding an IRR report is quite straight forward.

Add a div tag to the region definition in the "region header" and "region footer" sections.
I've included the "x-hide-display" class, so the region is hidden until it's needed.

i.e.
<div id="hidden-irr-region" class="x-hide-display">
IRR report
</div>

Next write some ExtJS code for the window, referencing the div tag.
See "More Information" below for the javascript.

Note: I disabled the Actions Menu for the report because it uses absolute positioning and appears outside the window. Everything else works well though.
Show IRR report in Popup Window   
 


First Name
Last Name
Street Address
City
State
Post Code
B1AA AAA-
ABCABC----
teste 551 pg221Aaron Jr.2342342342fghfghfg asas..aöö-asdcv
Ellena 235 srtAbelaaff29 Elizabeth Road's Street 30SANDSTRON234CA6639713
MadamAdam g1 Erebus StBLAIR ATHOL WESTSAppppp
etztzertz kmAdam hFlat 33 4 Bonnington RdLAKE TABOURIENSW2539
DeniseAdams1 Wellington St Wyoming CornerBOSSLEY PARKNSW2176
Gill1-oo1Adams15 JoffreSALISBURYQLD4107
JohnAdams127 Irby BvdRUSONSW2560
JohnAdams43 Pirie St 45TACOMAQLD4275
Kathryn1AdamsPO BOX 150INGGARDAWA6701
Larry 1121Adams8 Dwyers RdST KILDAVIC3182
LindaAdams8/27 Notley StECHUNGAWSA5153
LynetteAdams11 Hookey St xzvzxcvzxfcvNORTH BOOVALQLD4304
MattAdams1 Betts RdMURRUMBONSW2849
1 - 15 Next
Page Comments

Author Comment
aaa​aaaaaa
werwe​sdfsdfsd
consulta asedf
consultaSugerencias para el mapa 
RochusGreat! 
aashishIts awesome.
sonal comment
test test
GUunnarKomentera mi hit och sen dit!! 
ParthaIs it possible for  configure the Actions Menu to use relative positioning instead of absolute positioning?
Source Code   
<input type="button" id="show-win" value="Show Window"/>

<script type="text/javascript">

Ext.onReady(function(){

var button = Ext.get('show-win');

button.on('click', function(){
// ajaxContent for the center
var ajaxContent = new Ext.Panel({
region: 'center',
margins:'0 0 0 0',
autoScroll:true,
contentEl:'hidden-irr-region'
});

var win = new Ext.Window({
title: 'IRR report in an ExtJS window',
closable:true,
closeAction:'hide',
width:700,
height:350,
border:false,
plain:true,
layout: 'border',

items: [ajaxContent],

buttons: [{
text:'Submit',
disabled:true
},{
text: 'Close',
handler: function(){
win.hide();
}
}]
});

win.show(this);
});
});

</script>
Page Ref: 200801:2019
Generate: 0.18
  Release 1.0
©2008 Mark Lancaster. All rights reserved.
ExtJs