Hello,
Firefox and Chrome do not show Umlaute the same way. In Chrome it is working fine but not in Firefox.
Best regards,
Otto
We use following code to store Umlaute in Chrome:
function convertUmlaute( cVData )
local I := 0
*----------------------------------------------------------
cVData := STRTRAN(cVData, "%C3%A4", chr(228) )
cVData := STRTRAN(cVData, "%C3%B6", chr(246) )
cVData := STRTRAN(cVData, "%C3%BC", chr(252) )
cVData := STRTRAN(cVData, "%C3%84", chr(196) )
cVData := STRTRAN(cVData, "%C3%96", chr(214) )
cVData := STRTRAN(cVData, "%C3%9C", chr(220) )
cVData := STRTRAN(cVData, "%C3%9F", chr(223) )
return (cVData)
Firefox and Chrome do not show Umlaute the same way
- Otto
- Posts: 6418
- Joined: Fri Oct 07, 2005 7:07 pm
- Has thanked: 43 times
- Been thanked: 2 times
- Contact:
Firefox and Chrome do not show Umlaute the same way
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
- Otto
- Posts: 6418
- Joined: Fri Oct 07, 2005 7:07 pm
- Has thanked: 43 times
- Been thanked: 2 times
- Contact:
Re: Firefox and Chrome do not show Umlaute the same way
Now with decodeURI it seems to work: name2.bezeichnung = decodeURI( aRecord[2] );
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************