cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

call xsl page inside div in html without using iframe

Former Member
0 Likes
197

Hi All,

I need to call an xsl page inside a div in a html without using iframe.

Can some one hep me in this regard.

Thanks,

Kamala

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Likes

If you dont want to use iframe, you can directly place the Servlet in your irpt page.

<servlet name="Illuminator">

<param name="QueryTemplate" value="Qry" >

<param name="StyleSheet" value="web://Folder/.xsl" >

<param name="Param.1" value="{}" >

<param name="Content-Type" value="text/html" >

</servlet>

But you need to refresh page for any changes.

Regards,

Padma

Former Member
0 Likes

You could also call the servlet directly using AJAX.

Former Member
0 Likes

You can do this using AJAX or an icommand applet. Generate your html for output in your BLT and pass it back to your page. Then write the output dynamically to the div.

jcgood25
Active Contributor
0 Likes

My question would be - what's wrong with an iframe?

Sounds to me like a perfect use case for a <SERVLET> block in an IRPT page.

Edited by: Jeremy Good on Mar 10, 2009 5:37 PM