I have a window that has a table in it (i.e., the first 5 rows of Big Class.jmp) that I created using the script below and I'd like to know:
1) that a row of the table was selected
2) retrieve the row of data from the table in the window
After the window has been made, let's assume the user selects a row of the table as shown in the attached image.
Note: I am using JMP ver 17.1.
names default to here(1);
dt = open("$sample_data\big class.jmp", invisible);
rpt = dt << select where(row()<5) << get as report;
nw = new window("test",
v list box(
outline box("Big Class", rpt)
)
);