After have the table built I am wanting to modify the data. After modifying the data I will select a submit button that will loop through the data so I can send it to a database.
Main Topics
Browse All TopicsI would like to be able to loop through the following table. This is actually in a JSP that I will be using the looped data to call a java function.
<TABLE >
<TR>
<TH><input type="checkbox" name="masterChk"/></TH>
<TH>Symbol</TH>
<TH>Name</TH>
<TH>Price</TH>
</TR>
Thanks
<%
java.util.Iterator folio = portfolio.getPortfolio();
Stock stock = null;
int recordCnt = 0;
while (folio.hasNext())
{
recordCnt++;
stock = (Stock)folio.next();
String stockSymbol = stock.getSymbol();
String stockName = stock.getName();
Float stockPrice = stock.getPrice();
%>
<TR>
<TD><input type="checkbox" name="chk<%=recordCnt%>" value="<%=stockSymbol%>"/>
<TD><%=stockName%></TD>
<TD><%=stockSymbol%></TD>
<TD><input type=text name="stockPrice<%=recordC
</TR>
<%
}
%>
</TABLE>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You need to do a bunch of things. This tutorial should explain things clearly - http://www.devsphere.com/m
<input type="hidden" id="hidChkBoxVal" value=""/>
function getSelValues(frm){
var el = frm.elements;
for(i=0;i<el.length;i++) {
if(el[i].type == "checkbox" && el[i].checked){
document.getElementById('h
}
}
}
Now in ur servlet you can get the selected checkbox values as an String array.
String[] checkedValues = null;
if(request.getParameter("h
checkedValues = request.getParameter("hidC
}
Hope this is what you are looking for.
-Murali*
Well I was able to get the following to loop through each row and get the values of the columns. So now I have to put into the JSP. I did the following through HTML. I will put it into a JSP and see what happens.
function loopThroughTable() {
rows=document.getElementBy
for (var i=0; i<rows.length; i++)
{
cols=document.getElementBy
for (var i=0; i<cols.length; i++)
{
cols[i].style.backgroundCo
alert(cols[i].innerHTML);
}
}
}
Business Accounts
Answer for Membership
by: HainKurtPosted on 2009-10-28 at 18:56:18ID: 25690001
can u please explain more...
"loop through the following table" ==> ? the code is already doing this...