Hi
do you want to execute a focexec in stylesheet?
you must use javascript.
cannot use 'FOCEXEC='.
it is so hard.
DEFINE FILE CAR
RADIO1/A49='<input type=radio name=ARG1 value=0 checked>TEXT1';
RADIO2/A41='<input type=radio name=ARG1 value=1>TEXT2';
SCR/A200='<script>' |
'function focexec(a,b){' |
'location.href="/cgi-bin/ibi_cgi/ibiweb.exe?' |
'IBIF_ex=execname"+"&' |
'COUNTRY="+a +"&' |
'CAR="+b +"&' |
'ARG1="+document.all.ARG1[0].checked' |
'}' |
'</script>';
END
TABLE FILE CAR
HEADING
"<RADIO1 <RADIO2 <SCR"
PRINT CAR MODEL SEATS
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA,COLUMN=COUNTRY,
JAVASCRIPT=focexec(COUNTRY CAR),$
ENDSTYLE
END
this is what you need?