Focal Point
[CASE-OPENED] Can an AHTML Column Resize Like a HTML Column Can?

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

April 30, 2014, 04:13 PM
David Briars
[CASE-OPENED] Can an AHTML Column Resize Like a HTML Column Can?
Run the following code and note that as you resize your IE window (click 'restore' button and drag edges of window), the 'LONG' column resizes, and you always see the entire contents:
  APP PREPENDPATH IBISAMP
DEFINE FILE GGSALES
 LONG/A250 = '333 3333 3333333333 33333333333 33 333     333  222 333 2222 111111111 11 1 1 333333 333 333333333333';
END
TABLE FILE GGSALES
PRINT ST
      REGION
	  LONG
IF RECORDLIMIT EQ 3
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET LINES 10
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
$
END 


Change the OUTPUT format to AHTML, and you will see that the 'LONG' column does NOT resize, as you change the size of the window:

 APP PREPENDPATH IBISAMP
DEFINE FILE GGSALES
 LONG/A250 = '333 3333 3333333333 33333333333 33 333     333  222 333 2222 111111111 11 1 1 333333 333 333333333333';
END
TABLE FILE GGSALES
PRINT ST
      REGION
	  LONG
IF RECORDLIMIT EQ 3
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET HTMLCSS ON
ON TABLE SET LINES 10
ON TABLE SET STYLE *
TYPE=REPORT, SQUEEZE=ON,
$
END 


I'm using WF 8.0.07 & IE 9.

This message has been edited. Last edited by: <Kathryn Henning>,
May 05, 2014, 06:47 PM
<Kathryn Henning>
Hi All,

David has a case opened for this issue with Support, and it is being researched.

Cheers!

Kathryn
May 14, 2014, 06:06 AM
Ian Dalton
Hi David, You can try fiddling around with WRAP and as per below with AHTML format I got interesting results !! Not quite what you were hoping for I expect....
Ian


TYPE=REPORT, SQUEEZE=ON,WRAP=ON,


_______________________
*** WebFOCUS 8.1.05M ***
January 26, 2018, 07:41 PM
Doug
Thanks, years later...
quote:
TYPE=REPORT, SQUEEZE=ON,WRAP=ON
Doug Smiler