Hi, Community,
This post will demonstrate how to display data on the web by using Embedded Python , Python Flask Web Framework and Jquery datatable
We will display processes from %SYS.ProcessQuery table.
Step 1: Add table to HTML page and write below javascript code to display passed data from app.py :
HTML
<table id="myTable" class="table table-bordered table-striped">
</table>Javascript
<script>
$(document).ready(function() {
// parse the data to local variable passed from app.py file
let my_data = JSON.parse('{{ my_data | tojson }}');
let


