Skip to content

Commit 7ab497a

Browse files
committed
documentation(EJ2-67661): UG document to save and load report using database.
1 parent eb124ee commit 7ab497a

29 files changed

Lines changed: 373992 additions & 0 deletions

Javascript/README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# How to bind MSSQL database to pivot table
2+
3+
## Introduction
4+
5+
This repository contains client-side Javascript sample for syncfusion pivot table save & load.
6+
7+
## Prerequesties software
8+
9+
Make sure that you have the following requirements in your machine before starting to work on the client projects.
10+
11+
* git
12+
* Visual Studio Code (Optional)
13+
* Visual Studio 2022 (Optional)
14+
15+
## Guide to download
16+
17+
* To run this application, you need to clone the `Save-and-load-report-from-SQL-database-to-pivot-table` repository and then navigate to the path where it has been stored in your system.
18+
19+
* To do so, open the command prompt and run the below command.
20+
21+
```
22+
git clone https://github.com/SyncfusionExamples/Save-and-load-report-from-SQL-database-to-pivot-table
23+
24+
```
25+
26+
## Guide to Run sample
27+
28+
Once done with downloading, follows the steps one after the other.
29+
30+
* Run **MyWebService** (Server-side) Core Api application in Visual Studio to get the API link.
31+
32+
* Now open the Javascript pivot-table sample and Open the `index.html` file in browser page.

Javascript/pivot-table/index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<title>Essential JS 2</title>
5+
<!-- Essential JS 2 pivot table's dependent material theme -->
6+
7+
<!-- Essential JS 2 pivot table's material theme -->
8+
<link href="styles/material.css" rel="stylesheet" type="text/css"/>
9+
10+
<!-- Essential JS 2 pivot table's dependent scripts -->
11+
12+
<!-- Essential JS 2 pivot table's global script -->
13+
<script src="scripts/ej2.js" type="text/javascript"></script>
14+
</head>
15+
<body>
16+
<div id="PivotView"></div>
17+
<script src="index.js" type="text/javascript"></script>
18+
</body>
19+
</html>

0 commit comments

Comments
 (0)