You need to sign in to do that
Don't have an account?
Sascha Deinert
Inputfield with formatting html possibility
Hi,
how can I add to my visualforce an inputfield with the possibility to change the formatting - text like bold or to change the color ....?
Like this -->
Thanks,
Sascha
how can I add to my visualforce an inputfield with the possibility to change the formatting - text like bold or to change the color ....?
Like this -->
Thanks,
Sascha
I see that it is similar to a rich text input field so you can try the below tag once:
<apex:inputtextarea label="RichText" richtext="true" value="{!body}" id="Body" cols="100" rows="15"/>
Link: https://salesforce.stackexchange.com/questions/135647/rich-text-area-field-in-visualforce-page
Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.
Thanks.
All Answers
I see that it is similar to a rich text input field so you can try the below tag once:
<apex:inputtextarea label="RichText" richtext="true" value="{!body}" id="Body" cols="100" rows="15"/>
Link: https://salesforce.stackexchange.com/questions/135647/rich-text-area-field-in-visualforce-page
Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.
Thanks.
https://github.com/Avinava/custom-rtf