<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>ActiveReportsJSデモ</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.materialdesignicons.com/2.8.94/css/materialdesignicons.min.css"
/>
<script src="/activereportsjs/demos/arjs/dist/ar-js-core.js"></script>
<script src="/activereportsjs/demos/arjs/dist/ar-js-viewer.js"></script>
<script src="/activereportsjs/demos/arjs/dist/ar-js-pdf.js"></script>
<script src="/activereportsjs/demos/arjs/dist/ar-js-xlsx.js"></script>
<script src="/activereportsjs/demos/arjs/dist/ar-js-html.js"></script>
<script src="/activereportsjs/demos/arjs-localization/dist/ar-js-locales.js"></script>
<script src="$DEMOROOT$/lib/purejs/license.js"></script>
<link
rel="stylesheet"
type="text/css"
href="/activereportsjs/demos/arjs/styles/ar-js-ui.css"
/>
<link
rel="stylesheet"
type="text/css"
href="/activereportsjs/demos/arjs/styles/ar-js-viewer.css"
/>
<style>
#viewer-host {
margin: 0 auto;
width: 100%;
height: 500px;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="form-group mb-3 mt-3">
<div>
<label>使用するエクスポート</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="checkbox"
id="checkboxPdf"
value="pdf"
checked
onchange="setAvailableExports()"
/>
<label class="form-check-label" for="inlineCheckbox1">PDF</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="checkbox"
id="checkboxHtml"
value="html"
checked
onchange="setAvailableExports()"
/>
<label class="form-check-label" for="inlineCheckbox2">HTML</label>
</div>
<div class="form-check form-check-inline">
<input
class="form-check-input"
type="checkbox"
id="checkboxXLSX"
value="xlsx"
checked
onchange="setAvailableExports()"
/>
<label class="form-check-label" for="inlineCheckbox3">Excel</label>
</div>
</div>
</div>
<div id="viewer-host"></div>
<script>
const exportsSettings = {
pdf: {
title: "ActiveReportsJS デモ",
author: "MESCIUS inc.",
subject: "Web帳票",
keywords: "帳票, サンプル",
userPassword: "pwd",
ownerPassword: "ownerPwd",
printing: "none",
copying: false,
modifying: false,
annotating: false,
contentAccessibility: false,
documentAssembly: false,
pdfVersion: "1.7",
autoPrint: true,
filename: "ActiveReportsJS-Sample.pdf",
},
xlsx: {
creator: "MESCIUS inc.",
size: "A4",
orientation: "Landscape",
sheetName: "帳票",
password: "pwd",
filename: "ActiveReportsJS-Sample.xlsx",
},
html: {
title: "ActiveReportsJS デモ",
filename: "ActiveReportsJS-Sample.html",
autoPrint: true,
outputType: "html",
},
};
const viewer = new MESCIUS.ActiveReportsJS.ReportViewer.Viewer(
"#viewer-host",
{
ExportsSettings: exportsSettings,
language: "ja",
}
);
viewer.sidebarVisible = true;
viewer.open("Frontstore.rdlx-json");
const checkboxesIds = ["checkboxPdf", "checkboxHtml", "checkboxXLSX"];
function setAvailableExports() {
const availableExports = [];
checkboxesIds.forEach(function (checkBoxId) {
const checkBox = document.getElementById(checkBoxId);
if (checkBox && checkBox.checked) {
availableExports.push(checkBox.value);
}
});
viewer.availableExports = availableExports;
}
setAvailableExports();
</script>
</body>
</html>