|
The source code is as follows
<c: forEach items = "$ {trfm_fn: getParticularTrfm (param.currentUserID, param.begin_date, param.end_date)}" "var =" current "varStatus =" status ">
<tr class = "tr_bg1">
<c: choose>
<c: when test = "$ {status.first}">
<td width = "20"> <input checked name = "docId" type = "radio" value = "$ {current.docId}"> </ td>
</ c: when>
<c: otherwise>
<td width = "20"> <input name = "docId" type = "radio" value = "$ {current.docId}"> </ td>
</ c: otherwise>
</ c: choose>
<c: set value = "$ {union_fn: getProDetail (current.pjtId)}" var = "current1" />
<c: set var = "pjtName" value = "$ {current1.projectName}" />
<td width = "80"> <c: out value = "$ {pjtName}" /> </ td>
<td width = "80"> <c: out value = "$ {current.applyDate}" /> </ td>
<td width = "80"> <c: out value = "$ {current.allMoney}" /> </ td>
<input type = "hidden" name = "allMoney" value = "$ {current.allMoney}">
<c: choose>
<c: when test = "$ {current.applyStatus == 0}">
<td width = "80"> <c: out value = "submit" /> </ td>
</ c: when>
<c: when test = "$ {current.applyStatus == 1}">
<td width = "80"> <c: out value = "approving" /> </ td>
</ c: when>
<c: when test = "$ {current.applyStatus == 2}">
<td width = "80"> <c: out value = "Confirm" /> </ td>
</ c: when>
<c: when test = "$ {current.applyStatus == 3}">
<td width = "80"> <c: out value = "Deny" /> </ td>
</ c: when>
</ c: choose>
<input type = "hidden" name = "pjtname" value = "$ {pjtName}">
<input type = "hidden" name = "reason" value = "$ {current.reason}">
<c: set var = "count" value = "$ {count + 1}" />
</ c: forEach>
I want to get the allmoney value of the selected docId, pass to the next page, online etc. |
|