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.