Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@grapecity/ar-viewer-ja

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@grapecity/ar-viewer-ja

Fast, full featured, JavaScript report viewer for ActiveReports report definition files. Features include printing, exporting, and searching.

  • 14.1.2556
  • npm
  • Socket score

Version published
Weekly downloads
30
decreased by-54.55%
Maintainers
1
Weekly downloads
 
Created
Source

ActiveReports Js Viewer

How to install

npm i @grapecity/ar-viewer-ja

How to include

The bundles are here: ./node_modules/@grapecity/ar-viewer-ja/dist

Using the physical path:

<head>
  ...
  <link href="./node_modules/@grapecity/ar-viewer-ja/dist/jsViewer.min.css" rel="stylesheet">
  ...
</head>
<body>
  ...
  <script type="text/javascript" src="./node_modules/@grapecity/ar-viewer-ja/dist/jsViewer.min.js"></script>
  ...
</body>

Using the package name:

import "@grapecity/ar-viewer-ja/dist/jsViewer.min.js";
import "@grapecity/ar-viewer-ja/dist/jsViewer.min.css";

Using attributes main and style from package.json:

import "@grapecity/ar-viewer-ja";

How to use

<body>
  ...
  <div id="viewerContainer" />
  ...
  <script type="text/javascript">
    let viewer;
    function loadViewer() {
        viewer = GrapeCity.ActiveReports.JSViewer.create({
        element: '#viewerContainer'
        });
    }  
    loadViewer();
    viewer.openReport('report.rdlx');
  </script>
  ...
</body>

Localization

JSViewer automatically detects the user's language and supports English, Japanese, and Chinese localizations.

To add custom localization to JSViewer, specify the URL of the JSON file containing the localization data:

GrapeCity.ActiveReports.JSViewer.create({
  element: '#viewerContainer',
  localeUri: './custom-locale.json'
});

Or pass the JSON object directly:

GrapeCity.ActiveReports.JSViewer.create({
  element: '#viewerContainer',
  localeData: JSON.parse(`{
      "export": {
        "boolTextFalse": "False",
        "boolTextTrue": "True"
      },
      "viewer": {
        "toolbar":
        {
          "refresh": "Refresh"
        }
      }
    }`
  ),
});

FAQs

Package last updated on 15 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc