Hi,
I am building a web report as tab page boxes, where in each of the tab pages is a plot and a data filter built based on individual data table. It works, only the filter for 2nd and next tab pages are inactive... Any ideas?
Below is the example of the problem. The filter in the "alpha" tab is active, and the filter in the "beta" page inactive:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt_2 = Open( "$SAMPLE_DATA/Owl Diet.jmp" );
webreport1 = New Window( "Example",
Tab Box(
Tab Page Box( Title( "alpha" ),
H List Box(
dt << Bubble Plot( X( :weight ), Y( :height ), Sizes( :age ), Title Position( 0, 0 ),
local Data Filter(
Mode( Selected( 1 ), Show( 0 ), Include( 0 ) ) ,
Add Filter( columns( :sex ) )
)
)
)
),
Tab Page Box( Title( "beta" ),
H List Box(
dt_2 << Bubble Plot( X( :skull length ), Y( :skull length ), Sizes( :teeth row ), Title Position( 0, 0 ) ),
,
dt_2 << Data Filter(
Local,
Mode( Selected( 1 ), Show( 0 ), Include( 0 ) ) ,
Add Filter( columns( :species ) )
))
)
)
);
webreport = New Web Report();
webreport << Add Report( webreport1 );
file = webreport << Save( "$TEMP" );
If( !Is Empty( file ),
Web( file )
);
I am using JMP 16 on Windows.
Best regards,
Li
Li Pavlov