Subversion Repositories SmartDukaan

Rev

Rev 11910 | Rev 12157 | 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);
47
        }
48
    });  
49
});
50
</script>
51
<title>Private Deals Price Comparison</title>
52
</head>
53
<body>
54
<div>
55
    <div style="color:blue;">
56
    #sactionmessage()
57
    </div>
58
    <div style="color:red;">
59
    #sactionerror()
60
    </div>
61
		<div id="ajax-spinner" style="display:none;">
62
		<img src="/Support/images/ajax_loader_blue.gif" class="loading-image">
63
		</div>
64
	   <div id="comp-table">
65
	   </div>
66
</div>
67
</body>
68
</html>