Genero Browser Client charset
When a Genero Browser Client (GBC) type application starts, the bootstrap mechanism sets the charset needed to handle the application in the front-end.
The charset is defined in the metadata of the bootstrap.html. This file is found in the path to your custom GBC front-end, or in the default GBC client directory $FGLDIR/web_utilities/gbc if no customization is being used. This setting takes precedence over system locale settings.
Example
The code shown in the example comes from the
bootstrap.html. The charset
encoding the GBC uses by default is the UNICODE standard UTF-8 as it provides support for multiple
languages. Note: The bootstrap mechanism is an internal implementation. For more information, see
the Application bootstrap page in Genero Browser Client User Guide.
<!DOCTYPE html>
<!--
FOURJS_START_COPYRIGHT(D,2014)
Property of Four Js*
(c) Copyright Four Js 2014, 2022. All Rights Reserved.
* Trademark of Four Js Development Tools Europe Ltd
in the United States and elsewhere
This file can be modified by licensees according to the product manual.
FOURJS_END_COPYRIGHT
-->
<html>
<head>
<meta charset="utf-8">
<title>Genero Browser Client</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
...
};
</script>
</head>
...