I am stuck!!! There's an application I'm doing in wicket which requires the use of a rich text editor. I managed to use the visural rte and i am storing data from the rte to the database(the data stores with html tags generated within the RTE). When I retrieve the data, I can render it well in the RTE, by setting DefaultModelObject. My problem is, I want to make this RTE readonly programmatically based on some conditions but I can't. I have a feeling this visural rte does not conform to the basic wicket functionality like setenabled etc and I am getting frustrated. I opted to get the data and render it using multiline label but it displays everything plus the html tags. Can someone assist me out of this?? If i can make the rte readonly programmatically, I will be sorted!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The default behaviour is to escape output coming from your model data, as a protection against cross-site scripting, but you can change this selectively. Something resembling
should make your multiline label solution display rendered html instead of what you're currently seeing. |
|||||||||||
|
