on ‎2007 Apr 18 3:49 PM
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
Request clarification before answering.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mahwish,
try using the RowToColumnTransform.xsl.I suppose this needs to work.Please confirm after adding this.
regards,
Ravi Kumar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.