cancel
Showing results for 
Search instead for 
Did you mean: 

Style Sheet for Vertical Display

Former Member
0 Kudos

I have a Grid with some rows. When I click on a particular row an irpt page pops up with the details for that row. Currently I am using the IllumRowsetHTML.xsl stylesheet on the irpt page. Is there another style sheet which will display the records vertically. (ps, I will always have a single record to display on the irpt page).

So instead of:

Col1 Col2 Col3 Col4

A B C D

It should display

Col1: A

Col2: B

Col3: C

Col4: D

Thanks,

Mahwish

Message was edited by:

Mahwish De Silva

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Mahwish,

There is one more way for doing the same.This is by changing your query by using rowtocol function in sql.

one example for it is as follows:

SELECT a.deptno, a.dname, a.loc,

rowtocol('SELECT DISTINCT job FROM emp WHERE deptno = ' ||a.deptno) as jobs

FROM dept a;

in it you can define your parameters which you would like to want and get records.

Regards,

Ravi Kumar.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Mahwish,

try using the RowToColumnTransform.xsl.I suppose this needs to work.Please confirm after adding this.

regards,

Ravi Kumar