Hi all, I want to send parameter 's value to javascript function . When I use <html : radio as follow
<html:radio property="auctionTypeId" value="<%=(String)rId%>" onclick='javascript:whichAuctionType(<%=(String)rId%>);'/> , the value is not send and this is a result in IE <input type="radio" name="auctionTypeId" value="1" onclick="javascript:whichAuctionType(<%=(String)rId%>);"> But when use <input type="radio " as follow <input type="radio" name="auctionTypeId" value="<%= (String)rId%>" onclick='javascript:whichAuctionType(<%=(String)rId%>);'/> everything is work right : <input type="radio" name="auctionTypeId" value="1" onclick='javascript:whichAuctionType(1);'/> . I don't see what is different in html code . So , how can we directly send parameter value to javascript using <html:radio/> tag ? Thanks in advance !