Reputation: 929
I am developing an application which needs to display Malayalam text on the screen, on a LabelField. The text is now displaying like the following
'ജ';'യ';'ര';'ാ';'ജ';"
But I want to it as the follwing
ജയരാജ
How to do that?
Upvotes: 7
Views: 849
Reputation: 929
Convert this into ASCII format of any Malayalam font and set this Malayalam font as the default one for the application. I think this will solve your problem.
Upvotes: 0
Reputation: 172
Paste your string in above website in mixed input and see the java script escapes and you need to convert corresponding string to unicode using String.replace i think..
Upvotes: 1
Reputation: 172
You need to convert your text to javascript escapes of the format \u0987 and then this can be shown on blackberry devices.
Upvotes: 1