Is there any chance to get the html content (mime) from a rich text component without any datasource. I would like to grab the content from the field like this.
getComponent("FieldName").value
but this dosen't work.

thanks.

link|improve this question
Have you tried .getValue() or .getSubmittedValue() (to catch the value once posted)? – Per Henrik Lausten Feb 15 at 8:11
No...i will try this...thank you – Pixel Feb 15 at 14:23
feedback

2 Answers

up vote 5 down vote accepted

You can bind the control to a scoped variable; for example, #{viewScope.comments}. You can then retrieve the submitted value from the scope instead of from the component itself; for example, viewScope.get("comments").

Alternatively, you can set a dataContext variable to a JS expression, e.g. <dataContext var="richText" value="#{javascript:return {value:""};}" />. Then you can bind the control to #{richText.value} and retrieve it via the same expression.

And, of course, you could define a managed bean and bind the control to one of its properties. This option provides the most flexibility, but isn't quite as simple as the other two options above.

link|improve this answer
I second Tim's suggestion. A common source of grief is to try fiddling with getComponent("name").getValue() instead of using a scope binding and simply read the scope variable. Makes your live MUCH easier – stwissel Feb 15 at 10:33
feedback

The solution for my problem is

getComponent("FieldName").getValue()

thanks for your help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.