× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.




I have in my html page. A list of checkboxes by the same name "rowsel" I
expected to be able to use the zhbGetVarCnt('rowsel') to get the number of
occurences and then loop through to determine the which ones were checked.
However, it's working right. I was wondering is anyone had an ideas.

I found a sample on the web and I followed that sample as they have it laid
out but it doesn't appear to be working. I'm always getting a number of
occurrences of 1 and if I have a check box selected, it always looks like
the first one was selected. Make sense?


<htmlsnip>
<tr>
<td class="GBLTblDtl1Select">
<input type="checkbox" name="rowsel" />
</td>
<td class="GBLTblDtl1Alpha">
CHART
</td>
<td class="GBLTblDtl1Alpha">
Chart of Accounts Listing
</td>
</tr>
<tr>
<td class="GBLTblDtl2Select">
<input type="checkbox" name="rowsel" />
</td>
<td class="GBLTblDtl2Alpha">
CISCODE
</td>
<td class="GBLTblDtl2Alpha">
CIS Code Correction
</td>
</tr>
</htmlsnip>

<rpgsnip>
RecsOnPage = zhbGetVarCnt('rowsel');
For iX = 1 To RecsOnPage;
RowSelected = zhbGetVar('rowsel':iX);
If RowSelected <> 'on';
ItEr;
EndIf;
...
EndFor;
</rpgsnip>

The sample I found on the web is here...
http://www.semiug.org/docs/cgidev2_presentation.pdf Page 63 in the pdf.

Thank you for your help.

Michael Schutte
Admin Professional
Bob Evans Farms, Inc.



As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.