10-12-2012 03:52 PM
Hi All ![]()
I've strange problem with WebView in Cascades (QML) web page that I need to open and show is using UTF-8 but there is no declaration in <head> and WebView shows it with ISO-8859-2 encoding.
Can I do something with that?
Thanks
Krzysiek
05-05-2013 08:40 AM
05-06-2013 08:44 AM
Take a look here:
https://developer.blackberry.com/cascades/referenc
and here:
Maybe what you need is:
In QML
webView.settings.defaultTextCodecName = "UTF-8"
in C++:
pWebView->settings()->setDefaultTextCodecName (QString("UTF-8"));