Hi,

I am unable to display hyperlinks based on conditions in display tag. Suppose if I have condition like

                        If(shortName.equals(“Y”){

                                    <a href="">

                        }else{

                                    shortName;

                        }

 

It is setting hyperlinks to all shortName values instead of required ones….Is there any implementation for this….

 

<display:table width="95%" name="searchresult" pagesize="25" requestURI="./searchresult.jsp">

  <display:setProperty name="sort.behavior" value=""></display:setProperty>

  <display:column property="lastName" title="Last Name" sort="true"/>

  <display:column property="firstName" title="First Name"  sort="true"/>

  <display:column property="phoneNumber" title="Phone"  sort="true"/>

  <display:column property="shortName" title= "Agency" sort="true" />  

  <display:column property="cityName" title="City"  sort="true"/>

  <display:column property="street1" title="Location"  sort="true"/>    

</display:table> 

 

thanks,

-Ram

 

Reply via email to