Focal Point
[Solved]How to avoid jumpiness in accordian report?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2947093556

January 02, 2014, 02:42 PM
Kamesh
[Solved]How to avoid jumpiness in accordian report?
Hi,

Run the sample code below.

SET EXPANDBYROW=ON
TABLE FILE GGSALES
SUM BUDUNITS UNITS BUDDOLLARS DOLLARS
BY REGION
BY ST
BY CATEGORY
BY PRODUCT
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
GRID=OFF,FONT=ARIAL,$
END

If you expand the data, it moves to right and left. I would like to have fixed column width. How can I do that?

Thanks

This message has been edited. Last edited by: Kamesh,


WFConsultant

WF 8105M on Win7/Tomcat
January 03, 2014, 12:56 PM
Doug
Have you tried added "ON TABLE SET EXPANDABLE ON" after "ON TABLE SET HTMLCSS ON" as per F1 (Help)?

Keep in mind that the following commands are not supported when using Accordion Reports:

BORDER, COLUMN, FOR, IN, OVER, PAGE-NUM, ROW-TOTAL, TOTAL
January 03, 2014, 01:16 PM
Kamesh
Thanks Doug.

I tried your suggestion but no luck.

SET EXPANDBYROW=ON
SET DROPBLNKLINE=ON

TABLE FILE GGSALES
SUM BUDUNITS UNITS BUDDOLLARS DOLLARS
BY REGION
BY ST
BY CATEGORY
BY PRODUCT
ON TABLE SET HTMLCSS ON
ON TABLE SET EXPANDABLE ON
ON TABLE SET STYLE *
GRID=OFF,FONT=ARIAL,$
ENDSTYLE
END
-EXIT


WFConsultant

WF 8105M on Win7/Tomcat
January 03, 2014, 03:10 PM
David Briars
Hi Kamesh,

Thanks for posting this, I've had the same question.

I think a reasonably good analogy, for the user experience we are looking for, is Windows Explorer. Clicking various nodes in the left-hand side hierachy, doesn't cause the 'Name/Date Modified/Type/Size' columns to shift left and right.

In the GGSALES example, the 'dollar' columns will shift left and right, as a function of what is clicked in the hierarchy.

Dave




Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
January 15, 2014, 09:40 AM
Kamesh
I rewrote my code using an JQuery TreeTable and it works good.


WFConsultant

WF 8105M on Win7/Tomcat