Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4707407
By: ed_j_webb

 
<display:column title="<input type='checkbox' name='selectall'/>">  

Of course you can't do that. You can't do that with any jsp tags.

Have you tried replacing the < and > with &lt; and &gt; ?

<display:column title="&lt;input type='checkbox' name='selectall'/&gt;">  

Alternatively you can use the titleKey attribute...

<display:column titleKey="column.select.all">  

... and place the html code in your resource bundle.

column.select.all=<input type='checkbox' name='selectall'/>

Ed!

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to