I have a java bean class which has two properties called url and text. Now this url is different for different id's. In my jsp I am using display table to display my data. What my requirement is , one of the table column should display the value of text property of the bean. But when the person clicks on that, it should open the correspoding value of url property. Now currently as the column tag allows only one property, I am not able to get this functionality working.
If I use something like
<display: column property= "url" autolink ="true"/> It displays the entire url in the column values.
But I actually want the text property to be displayed.
Thanks in advance for you response.