This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Thirumalesh Chinna - Web Development</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="/style.css"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> </head> | |
<body style="margin-top: 0px"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var head = false; | |
var cols = 0; | |
function printStore(store,th) { | |
var a = store.data.items; | |
var h = new Array(); | |
var d = new Array(); | |
for (var i=0; i < a.length; i++) { | |
for (var propName in a[i].data) { | |
if (!(a[i].data[propName] instanceof Function)) { | |
d.push(a[i].data[propName]); |