Description
|
I'm using the loop below to set my values for my checkboxes.
This part works fine but I'm having a problem keeping the
boxes marked and having them populate the mainframe
screen. I've tried using a similar loop w/in the handler
and using the checked property but am still unable to get
them to remain checked. Any suggestions??
<TELOOP name=rowid first=7 last=15 step=1>
<teif Screen(rowid,4,1) == " ">
<tebreak>
<teelse>
<TESET discountoption = discountoption+'<input
type="checkbox" name="discount" value="'+Screen(rowid,4,4)
+'">'+Screen(rowid,4,65)+'</OPTION><br>'>
</TEIF>
<teset discoptions = discountoption>
<teset discflag="y">
</TELOOP>
</teif>
<pre>
|