cancel
Showing results for 
Search instead for 
Did you mean: 

Display

Former Member
0 Kudos

Hi,

In portal component development, I'm maintainig a properties file for the values that are used for text property of labels in the jsp.

.properties file --->>>

labelText = <b>Ylityö pidetään</b> This is called in the jsp's htmlb label control --->>> <b>text="<%=TxtBundle.getResourceText("labelText")%>"</b> display in portal iView --->>> <b>Ylityö pidetään</b> When directly assigned --->>> <b>text="Ylityö pidetään"</b>

This is working fine

Please suggest a solution for these kind of characters.

Thanks and Regards,

Vijay Kalyan G.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

ups,

not text="="Ylity\u00F6

but text="Ylity\u00F6"

Former Member
0 Kudos

Hi Peter,

I already solved but still appreciate your perfect answer.

I'm giving points too.

Thanks and Regards,

Vijay Kalyan G.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vijay

Try to use unicode for speciel characters

text="="Ylity\u00F6

Hope it helps

Peter