Yeah... you can append the parameters to the URL and send them.
For Eg:
<script type="text/javascript">
function setSelectionId(selId){
document.feeForgivenessForm.action = 'redeemFeeForgiveness.do?selectionId='+ selId;
document.feeForgivenessForm.submit();
}
</script>
...................
...................
<input type="submit" name="Redeem" value="Redeem" class="buttonStyle" onclick='javascript:setSelectionId(<nested:write property="selectionId"/>)' />
...................
...................
If you look at the javascript function 'setSelectionId', I am appending the parameter to the URL and setting the action.
BTW can you expand IDM? I didn't get what exactly does that mean?
SirG
Message was edited by:
SirGeneral