Add Report Designer Feature
This commit is contained in:
parent
e8098ff43f
commit
aed9fb5051
7 changed files with 165 additions and 45 deletions
36
BMA.EHR.Report.Service/wwwroot/designer.html
Normal file
36
BMA.EHR.Report.Service/wwwroot/designer.html
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Telerik Web Report Designer</title>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="webReportDesigner">
|
||||
loading...
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
|
||||
<script src="https://kendo.cdn.telerik.com/2020.1.114/js/kendo.all.min.js"></script>
|
||||
|
||||
<script src="/api/reportdesigner/resources/js/telerikReportViewer/"></script>
|
||||
<script src="/api/reportdesigner/designerresources/js/webReportDesigner/"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$("#webReportDesigner").telerik_WebReportDesigner({
|
||||
toolboxArea: {
|
||||
layout: "list" //Change to "grid" to display the contents of the Components area in a flow grid layout.
|
||||
},
|
||||
serviceUrl: "/api/reportdesigner",
|
||||
report: "01-คำสั่งบรรจุและแต่งตั้งผู้สอบแข่งขันได้-1.trdp"
|
||||
}).data("telerik_WebDesigner");
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue