cancel
Showing results for 
Search instead for 
Did you mean: 

Formatting toolbar for Text area in BSP

Former Member
0 Kudos

Hi,

In BSP is it possible to provide a formatting toolbar for a text area where in we can fornmat the text as Bold/italics, Colours etc?

Regards,

Devendra

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Yes.

Afer entering text, Can User have a option of formatting the text?

athavanraja
Active Contributor
0 Kudos

for this use the BTF editor it come with lot of nice features.

check the following weblog on how to implement the same in your bsp page.

/people/thomas.jung3/blog/2005/04/21/bsp-btf-editor-example-non-model-view-controller

Regards

Raja

Former Member
0 Kudos

This message was moderated.

Answers (2)

Answers (2)

Former Member
0 Kudos

I was looking for an option of Formatting to be done by the User. i.e the end user can select the text and conver it to Bold/Italics etc.

raja_thangamani
Active Contributor
0 Kudos

You mean while entering the text in Text area?

Raja T

raja_thangamani
Active Contributor
0 Kudos

You can format the text as follows:


      <htmlb:textView     text          = "<span style='background-color: #00FF00'>My Textview</span>"
                          design        = "EMPHASIZED" />
 
      <htmlb:label for =  "MyLabel"
                   text = "<span style='background-color: #00FF00'>Label </span>" 
                   encode = "false"/>

Raja T