Category / Section
How to localize Syncfusion Javascript ReportViewer?
1 min read
Syncfusion JavaScript ReportViewer default toolbar shows the tooltip text with common language in en-US culture. It supports to customize and localize the texts, tooltip of the user interface (UI) elements. You can create a ReportViewer sample in Javascript by referring the Getting Started documentation.
The following code snippet represents the localized tooltip text of few report viewer toolbar elements in Japanese language to display regional data.
<script type="text/javascript"> $(function () { ej.ReportViewer.Locale["ja-JP"] = { toolbar: { print: { headerText: '印刷', contentText: '印刷' }, exportformat: { headerText: '輸出', contentText: 'エクスポートされたファイル形式を選択します。', Pdf: 'PDF', Excel: 'エクセル', Word: '単語', Html: 'Html', CSV: 'CSV', PPT: 'PPT' }, first: { headerText: '最初の', contentText: 'レポートの最初のページに移動します。' }, previous: { headerText: '前の', contentText: 'レポートの前のページに移動します。' }, next: { headerText: '次の', contentText: 'レポートの次のページに移動します。' }, last: { headerText: '最後の', contentText: 'レポートの最後のページに移動します。' }, parameter: { headerText: 'パラメーター', contentText: '表示またはパラメータペインを非表示にします。' }, zoomIn: { headerText: 'ズーム•イン', contentText: 'レポートに拡大します。' }, zoomOut: { headerText: 'ズームアウト', contentText: 'レポートのズームアウト。' }, refresh: { headerText: 'リフレッシュ', contentText: 'レポートを更新します。' }, printLayout: { headerText: 'プレビュー', contentText: '印刷レイアウトモードと通常モードとの間で変更します。' }, zoom: { headerText: 'ズーム', contentText: 'レポート上のズームインまたはズームアウト。' }, back: { headerText: 'バック', contentText: 'バック親レポートに戻ります。' }, fittopage: { headerText: 'ページに合わせる', contentText: 'コンテナにレポートページを取り付けます。', pageWidth: 'ページ幅', pageHeight: 'ページ全体' }, pagesetup: { headerText: 'ページ設定', contentText: '用紙サイズ、向きや余白を変更するには、ページ設定オプションを選択します。' } }, credential: { userName: 'ユーザー名', password: 'パスワード' }, waterMark: { selectOption: '選択肢を選択', selectValue: '値を選択' }, selectAll: 'すべて選択', viewButton: 'レポートの表示。' }; $("#container").ejReportViewer( { reportServiceUrl: "/api/ReportApi", reportPath: '~/App_Data/GroupingAgg.rdl', processingMode: ej.ReportViewer.ProcessingMode.Remote, locale: 'ja-JP' }); </script>
Run the sample application and you can see the localized ReportViewer like the following screenshot.
Please download the reportviewer localization sample here
Further References
Online demo of localized reportviewer