-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathShowing the Designer in a Required Position.html
40 lines (34 loc) · 1.31 KB
/
Showing the Designer in a Required Position.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" href="../favicon.ico" />
<title>Showing the Designer in a Required Position</title>
<!-- Stimulsoft Reports.JS -->
<script src="../scripts/stimulsoft.reports.js" type="text/javascript"></script>
<script src="../scripts/stimulsoft.viewer.js" type="text/javascript"></script>
<script src="../scripts/stimulsoft.designer.js" type="text/javascript"></script>
<script src="../scripts/stimulsoft.blockly.editor.js" type="text/javascript"></script>
<!-- Report designer scripts, may be external -->
<script type="text/javascript">
// Create the report designer with default options
var designer = new Stimulsoft.Designer.StiDesigner(null, "StiDesigner", false);
// Create a new report instance
var report = new Stimulsoft.Report.StiReport();
// Load report from url
report.loadFile("../reports/SimpleList.mrt");
// Assign report to the designer
designer.report = report;
</script>
</head>
<body>
Showing the Designer in a Required Position
<br><br>
<div>
<script type="text/javascript">
// Show the report designer in this place
designer.renderHtml();
</script>
</div>
</body>
</html>