cancel
Showing results for 
Search instead for 
Did you mean: 

Placing the web items in web report

Former Member
0 Kudos

Hi,

I have a report wherein I have put two web items adjacent to each other, but when I execute the report, it appears one below the other. Plz let me know how can I display them adjacent to each other.

Thanks & Regards

Bill

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Bill

On right hand side (New template panal), right click and insert table with no. of lines:1, no. of columns:2.

Now drag and drop ur web items into the cells of the table.

Now execute the report.

Hope this helps,

RRK

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

On your WebTemplate, try to create a table first and split the table into 2 column. Put your webitems on each cell.

So on the HTML you will see following code..

<TABLE><TR>

<TD>

<P><object> your 1st graph</object></P>

</TD>

<TD>

<P><object> your 2nd graph</object></P>

</TD>

</TR></TABLE>

Hope helps.