Focal Point
Execute in New Page

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5201098331

August 16, 2005, 06:44 PM
Raini
Execute in New Page
Is it possible to do a drill down with each drill having it's own page?

I'm guessing I would have to put something n the HTML that says new page.
August 16, 2005, 06:56 PM
Boogarweed
In your stylesheet entry put TARGET=_blank like below.

TYPE=DATA, COLUMN=MODEL, FOCEXEC=myfoc(MODEL_PARM=MODEL), TARGET=_blank,$
August 16, 2005, 07:05 PM
mgrackin
TARGET=_NEW will work as well.

TABLE FILE CAR
SUM RCOST DCOST SALES
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=COUNTRY, FOCEXEC=MAGTEST1, TARGET=_NEW,$
ENDSTYLE
END
August 17, 2005, 10:54 AM
Tony A
The difference between _blank and _new is that _blank will launch a new page each time whereas _new will only reuse the latest page launched with _new.

There are certain 'standard' target parms for pages including _parent, _blank etc. Check out the myriad of sites on the web for more explanations. One suggestion is www.htmlgoodies.com , especially if you're new to HTML, JS etc.
August 25, 2005, 11:19 AM
Raini
Thanks!! That worked beautifully.