the link is not forwording to 1.jsp this code is not working properly
<display:column property='in' sortable='true' href='1.jsp' paramid='1.jsp'/>
thanx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Clicking on this link will not go to 1.html but to 1.jsp as you have defined href=’1.jsp’.
You have defined paramid=’1.html’ but paramId takes the name of parameter which you want to send to the href url
i.e. if you want 1.jsp?paramName=paramValue then you will define paramId=’paramName’
Read the display:column documentation again to understand it better.