Another JSL question, I'm trying to put a table in Journal using JSL. Here is what I am trying to do:
current_data_table << New Data View; // Creating the Journal nw = New Window("Journal Right Here", <<Journal, ob = Outline Box("Section 1", Text Box("Some description that we need here.", << Markup), Current Journal()[TableBox(current_data_table)] ) );
Everything seems to be working but the TableBox code... I am sure it is something easy but it is stumping me.
Thank you in advance.
Here is a very simple script that does what you want:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
nw = New Window( "sample journal",
<<journal,
ob = Outline Box( "Selection 1",
Text Box( "this is some description", Markup( 1 ) ),
dt << New Data Box()
)
);
Here is a very simple script that does what you want:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
nw = New Window( "sample journal",
<<journal,
ob = Outline Box( "Selection 1",
Text Box( "this is some description", Markup( 1 ) ),
dt << New Data Box()
)
);
Hi Jim,
Thank you for your response. It works great. Quick question through, when I go to the Journal is shows the table with rows and columns that are completely empty (like an Excel spreadhseet) versus just the rows and column with headers. Any solutions?
Thank you in advance,
Brad
The reason it displays empty cells, is because it is a view into an existing data table. Here is another script that just adds a visual copy. The script has to be a little tricky in it's method to place the data table view under the outline box.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
nw = New Window( "sample journal",
<<journal,
ob = Outline Box( "Selection 1",
Text Box( "this is some description", Markup( 1 ) ),
hlb = H List Box()
)
);
xx = New Window( "xxx", <<journal );
dt << journal;
hlb << append( xx );
xx << close window;
Awesome! Thank you so much for taking the time to reply, completely works.
Brad
Thanks for those last 4 lines.
Append a matrix???
A mathematical matrix....... a = [1,2,3 4,5,6] ?
A matrix of text boxes?
This might work for you
names default to here(1);
myMatrix = [1 2 3, 4 5 6, 7 8 9];
nw=new window("test", vlb=vlistbox());
vlb<<append((as table(myMatrix))<< get as report);
close(current data table(), nosave);
(nw<<xpath("//NumberColBox"))<<set heading("");