本帖最后由 KearneyKang 于 2018-7-4 14:29 编辑
你好!
H5展示的工具栏都是集成好了的,具体的修改需要去修改对应的JS文件。这个汉化,可以通过修改 下面这个Localeuri.txt 文件进行汉化。
localeUri: 'Scripts/i18n/Localeuri.txt',
本地路径下:C:\Program Files (x86)\GrapeCity\ActiveReports 12\Deployment\Html\i18n 有对应英文和汉化的 txt 文件。你替换下就可以了
- $(document).ready(function () {
- $("#button1").click(function () {
- var number = $("#TextBox1").val();
- var viewer = GrapeCity.ActiveReports.Viewer({
- element: '#viewer',
- report: {
- id: "RdlReport1.rdlx",
- parameters: [
- {
- name: 'ReportParameter1',
- value: "3"
- }
- , {
- name: 'ReportParameter2',
- value: "2"
- }
- ]
- },
- reportService:
- {
- url: 'WebService1.asmx'
- },
- uiType: 'Desktop',
- localeUri: 'Scripts/i18n/Localeuri.txt',
- });
- });
- });
- </script>
复制代码
|