• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

suppress <logic:equal> output

 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can we suppress the property value from being displayed &
execute only the stuff between the <logic> tag ?
 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<logic:equal name="OrderForm" property="status" value="PARTIALLY EXECUTED">
<td >Modify</td>
</logic:equal>

<logic:notEqual name="OrderForm" property="status" value="PARTIALLY EXECUTED">
<td >Closed</td>
</logic:notEqual>
 
Vishal Mungi
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<logic:equal name="submitForm" property="address" value="Mumbai">
<b>Mumbai</b>
</logic:equal>
<logic:equal name="submitForm" property="address" value="Pune">
<b>Pune</b>
</logic:equal>

Output :

Hello Mumbai Mumbai

why ?

[ March 27, 2005: Message edited by: Vishal Mungi ]
[ March 27, 2005: Message edited by: Vishal Mungi ]
reply
    Bookmark Topic Watch Topic
  • New Topic