Ticket #489 ( Closed )

Short Description Check Boxes
Entered By: jennifer.genzlinger@experian.com When: 2000-03-29 08:37:57 Build: 2.0.7A
Categories Type: Question   Department: Product   Category: Not Categorized
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>