Subversion Repositories SmartDukaan

Rev

Rev 12170 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
11906 kshitij.so 1
<!DOCTYPE html PUBLIC 
2
    "-//W3C//DTD XHTML 1.1 Transitional//EN"
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
<head>
6
<link type="image/x-icon" href="/Support/images/favicon_alt.ico" rel="shortcut icon">
7
<link href="/Support/css/demo_page_amazon.css" type="text/css" rel="stylesheet">
8
<link href="/Support/css/demo_table_amazon.css" type="text/css" rel="stylesheet">
9
<script type="text/javascript" src="/Support/js/jquery-1.4.2.js"></script>
12152 kshitij.so 10
<script type="text/javascript" src="/Support/js/jquery.dataTables.min.js"></script>
11
 
11906 kshitij.so 12
<style type="text/css">   
13
* { font-family: Verdana; font-size: 96%; }
14
label.error { float: none; color: red; padding-left: .5em; vertical-align: top; }
15
p { clear: both; }
16
.submit { margin-left: 12em; }
17
em { font-weight: bold; padding-right: 1em; vertical-align: top; }
18
ul { padding-left: 13px;}
19
td{background-color:#B0BED9};
20
.diffColor {
21
    background: grey;
22
}
23
</style>
24
<style>
25
.loading-image {
26
position: fixed;
27
top: 50%;
28
left: 50%;
29
margin-top: -50px;
30
margin-left: -100px;
31
z-index: 100;
32
}
33
</style>
34
<script type="text/javascript">
35
		$(function(){
36
jQuery.ajax({
37
        type : "GET",
11910 kshitij.so 38
        url : "/Support/private-deals-comparison!getCompData",
11906 kshitij.so 39
		beforeSend: function(){
40
        $('#ajax-spinner').show();
41
        },
42
        complete: function(){
43
        $('#ajax-spinner').hide();
44
        },
45
        success : function(response) {
46
        $('#' + 'comp-table').html(response);
12171 kshitij.so 47
		var timestamp = $( ".timestamp" ).text();
48
		$('.last-timestamp').text('Last Processed Timestamp : '+timestamp);
11906 kshitij.so 49
        }
50
    });  
51
});
52
</script>
53
<title>Private Deals Price Comparison</title>
54
</head>
55
<body>
56
<div>
12157 kshitij.so 57
		<h1 style="text-align: center; font-size: 20px; margin-bottom: 0px; margin-top: 15px; font-weight: bold; color: rgb(80, 94, 121);">Private Deals Price Comparison</h1>
12171 kshitij.so 58
		<h6 class="last-timestamp" style="margin-bottom: 0px; text-align: center; font-size: 12px; margin-top: 5px;">Last Processed Time : </h6>
11906 kshitij.so 59
		<div id="ajax-spinner" style="display:none;">
60
		<img src="/Support/images/ajax_loader_blue.gif" class="loading-image">
61
		</div>
62
	   <div id="comp-table">
63
	   </div>
64
</div>
65
</body>
66
</html>