-
Notifications
You must be signed in to change notification settings - Fork 0
/
Release.cshtml
65 lines (58 loc) · 1.8 KB
/
Release.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@model Denial_Coding.BAL.ViewModels.TransactionModel
@using Denial_Coding.BAL.Generics
<!DOCTYPE html>
<html lang="en">
<head>
<title>Relese</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.image {
position: relative;
width: 100%; /* for IE 6 */
}
</style>
<script src="~/CustomStyles/ToasterMessages.js"></script>
</head>
<body>
<div class="row x_panel">
<div class="row">
<div class="x_panel">
<div class="x_title">
<h2><i class="fa fa-bars"></i>Coding Completed Inbox <small></small></h2>
<ul class="nav navbar-right panel_toolbox">
<li style="float:right">
<a class="collapse-link"><i class="fa fa-chevron-up"></i></a>
</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="x_content" id="coderInbox" style="overflow-x:scroll">
</div>
</div>
</div>
</div>
<div id="divEDITCol"></div>
</body>
</html>
<script>
var ProjId [email protected][Constants.ProjectId]
$(function () {
LoadreleasedInboxGrid();
});
function LoadreleasedInboxGrid() {
$.ajax({
url: '@Url.Action("LoadReleaseInbox")',
cache: false,
type: 'GET',
dataType: 'html',
beforeSend: function () {
},
success: function (data) {
$('#coderInbox').first().html(data);
},
error: function (jXhr) {
}
});
}
</script>