This is an ongoing question for me since 2014 and till today I could not find a solution.
https://community.jmp.com/t5/Discussions/command-line-for-html5-CSS-wrapping-the-table-to-screen-wid...
I wish I could set the CSS commands inside JMP Settings so I could control the html output (table style, background color, fonts.... these three I can do after exporting the html file and later editing the CSS but setting wrap width and setting columns to the width of the data, I could not find....
How could I impement a data column message in a JSL?
And how do I set the column height?
The script for the table box is:
nw = New Window( "ALL COMMENTS",
Table Box(
Data Table Col Box( :QUESTION ),
Data Table Col Box( :Text ),
Data Table Col Box( :CInDate ),
Data Table Col Box( :COutDate ),
Data Table Col Box( :Lastname ),
Data Table Col Box( :Firstname ),
Data Table Col Box( :COUNTRY ),
Data Table Col Box( :Agency ),
Data Table Col Box( :Room ),
Data Table Col Box( :RoomType ),
Data Table Col Box( :EntryId )
)
);
Many thanks in advance