JavaUser - 2005-05-04

Hi All,

I am having a Names with links before links displaytag was sorting perfectly but after adding links it does not sort correctly.How to sort the columns with displayed name only and not sort the whole including the link.
Below is the code how the column value is displayed.

<display:column media="html" title="Project Name" sortable="true" headerClass="sortable">
<% int pidNbr = ((ViewProjectDTO)pageContext.findAttribute("projects")).getPidNbr();
String projNm = ((ViewProjectDTO)pageContext.findAttribute("projects")).getProjNm().trim(); %>
<a href="#" onMouseover="showmenu(event,<%=pidNbr%>,'<%=projNm%>')">
<%=projNm%></display:column>

Thanks