Here is a simple piece of jsl that produces the table you want:
Names Default To Here( 1 );
dt = Current Data Table();
New Window( "Table",
Border Box( sides( 15 ),
tb = Table Box(
String Col Box( "Work Location", dt:Work Location << get values ),
String Col Box( "Stiffener Type", dt:Stiffener Type << get values ),
String Col Box( "Status", dt:Status << get values ),
String Col Box( "Notes", dt:Notes << get values )
)
)
);
tb << set shade alternate rows( 1 );
Jim