Thank you for your help.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Essential Studio for JavaScript">
<meta name="author" content="Syncfusion">
<title></title>
<!-- Essential Studio for JavaScript theme reference -->
<link rel="stylesheet" rel='nofollow' href="http://cdn.syncfusion.com/15.3.0.26/js/web/flat-azure/ej.web.all.min.css" />
<!-- Essential Studio for JavaScript script references -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://cdn.syncfusion.com/js/assets/external/jsrender.min.js"></script>
<script src="http://cdn.syncfusion.com/15.3.0.26/js/web/ej.web.all.min.js"> </script>
<!-- Add your custom scripts here -->
</head>
<body>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="ej" uri="/WEB-INF/EJ.tld"%>
<%@ page import="com.syncfusion.*"%>
<%@ page session="false" import="java.util.ArrayList"%>
<%@ page session="false" import="java.util.Iterator"%>
<%@ page import="datasource.GetJsonData"%>
<div class="cols-sample-area">
<%
GetJsonData obj =new GetJsonData();
Object data = obj.getGridData();
request.setAttribute("DataSource", data);
%>
<ej:grid id="FlatGrid" allowPaging="true" dataSource="${DataSource}">
<ej:grid-columns>
<ej:grid-column field="OrderID" headerText="Order ID" width="75" textAlign="right"></ej:grid-column>
<ej:grid-column field="CustomerID" headerText="Customer ID" width="80"></ej:grid-column>
<ej:grid-column field="EmployeeID" headerText="Employee ID" width="75"textAlign="right"></ej:grid-column>
<ej:grid-column field="Freight" headerText="Freight" width="75" format="{0:C}"textAlign="right"></ej:grid-column>
<ej:grid-column field="ShipCountry" headerText="Ship Country" width="80"></ej:grid-column>
</ej:grid-columns>
</ej:grid>
</div>
|