Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Struts converting HTML tags into entities

Hi I'm using Struts 1.2 and I installed TinyMCE. The problem is that struts is converting all HTML tags into entities. How do I disable or configure this to allow only selected tags?

like image 324
ajushi Avatar asked Dec 30 '25 07:12

ajushi


1 Answers

Use the filter parameter (taglib).

<bean:write name="someField" filter="false"/>
like image 172
Pool Avatar answered Dec 31 '25 20:12

Pool