-
Notifications
You must be signed in to change notification settings - Fork 0
/
_MappingInbox.cshtml
240 lines (206 loc) · 11.1 KB
/
_MappingInbox.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
@using Denial_Coding.BAL.Generics
@using (Html.BeginForm("", "", FormMethod.Post, new { @id = "formMappingGrid" }))
{
<div id="dvCategoryResults">
<table class="table table-striped responsive-utilities jambo_table bulk_action customTable" id="DisplayGrid">
<thead>
<tr class="heading">
@*<th class="sorting"><label>S.No</label></th>*@
@*@foreach (System.Data.DataColumn col in Model.Columns)
{
<th>@col.Caption</th>
}*@
<th><label>SL NO</label></th>
<th align="center"></th>
<th><label>Column Name</label>
<th><label>SL NO</label></th>
<th align="center"></th>
<th><label>Column Name</label>
<th><label>SL NO</label></th>
<th align="center"></th>
<th><label>Column Name</label>
<th><label>SL NO</label></th>
<th align="center"></th>
<th><label>Column Name</label>
</tr>
</thead>
<tbody>
@foreach (System.Data.DataRow row in Model.Rows)
{
<tr>
@*@foreach (var cell in row.ItemArray)
{
//if (cell.ToString().EndsWith("="))
//{
<td>@cell.ToString() </td>
@*}
else
{
<td>@cell.ToString() </td>
}
}*@
<td class="count" width="5%" align="center"></td>
<td style="width:5%;" align="center">
@if (row["check_list_odd"].ToString() == "true")
{
<span style="width: 5%; float: left;">
<img id="@("img_" + row["Column_Id"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["Column_Id"].ToString());" width="25" />
</span>
}
@*<input type="image" name="img" id="@("img_" + row["Column_Id"])" src="~/Images/White-7.jpg" value="@row["Column_Id"].ToString()" width="25" onclick="TestClick(@row["Column_Id"].ToString());" />*@
@*<input type="image" name="img" id="@("img_" + row["Column_Id"])" src="~/Images/tick.png" value="@row["Column_Id"].ToString()" width="25" style="display:none;" onclick="TestClick(@row["Column_Id"].ToString());" />*@
<span style="width: 5%; float: left;">
<img id="@("img_" + row["Column_Id"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["Column_Id"].ToString());" style="display: none; width:25px;" width="25" />
</span>
</td>
<td style="width:15%;" align="center">
<span onclick="TestClick(@row["Column_Id"].ToString());" style="float:left;">
@Html.Hidden("lblColumn_ID", @row["Column_Id"].ToString())
@Html.Label("lblColumn_Name", @row["Column_Name"].ToString(), new { @style = "width: 100px;" })
</span>
</td>
@if (row["cname_sec"].ToString() == "")
{
<td colspan="2" align="center"></td>
}
else
{
<td class="count" width="5%" align="center"></td>
<td style="width:5%;" align="center">
@if (row["check_list_even_sec"].ToString() == "true")
{
<span style="width: 5%; float: left;">
<img id="@("img_" + row["cid_sec"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["cid_sec"].ToString());" width="25" />
</span>
}
@*<input type="image" name="img" id="@("img_" + row["Column_Id"])" src="~/Images/White-7.jpg" value="@row["Column_Id"].ToString()" width="25" onclick="TestClick(@row["Column_Id"].ToString());" />*@
@*<input type="image" name="img" id="@("img_" + row["Column_Id"])" src="~/Images/tick.png" value="@row["Column_Id"].ToString()" width="25" style="display:none;" onclick="TestClick(@row["Column_Id"].ToString());" />*@
<span style="width: 5%; float: left;">
<img id="@("img_" + row["cid_sec"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["cid_sec"].ToString());" style="display: none; width:25px;" width="25" />
</span>
</td>
<td style="width:15%;" align="center">
<span onclick="TestClick(@row["cid_sec"].ToString());" style="float:left;">
@Html.Hidden("lblC_ID_Sec", @row["cid_sec"].ToString())
@Html.Label("lblC_Name_Sec", @row["cname_sec"].ToString(), new { @style = "width: 200px;" })
</span>
</td>
}
@if (row["cname_third"].ToString() == "")
{
<td colspan="2" align="center"></td>
}
else
{
<td class="count" width="5%" align="center"></td>
<td style="width:5%;" align="center">
@if (row["check_list_even_third"].ToString() == "true")
{
<span style="width: 5%; float: left;">
<img id="@("img_" + row["cid_third"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["cid_third"].ToString());" width="25" />
</span>
}
<span style="width: 5%; float: left;">
<img id="@("img_" + row["cid_third"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["cid_third"].ToString());" style="display: none; width:25px;" width="25" />
</span>
</td>
<td style="width:15%;" align="center">
<span onclick="TestClick(@row["cid_third"].ToString());" style="float:left;">
@Html.Hidden("lblC_ID", @row["cid_third"].ToString())
@Html.Label("lblC_Name", @row["cname_third"].ToString(), new { @style = "width: 200px;" })
</span>
</td>
}
@if (row["cname_four"].ToString() == "")
{
<td colspan="2" align="center"></td>
}
else
{
<td class="count" width="5%" align="center"></td>
<td style="width:5%;" align="center">
@if (row["check_list_even_four"].ToString() == "true")
{
<span style="width: 5%; float: left;">
<img id="@("img_" + row["cid_four"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["cid_four"].ToString());" width="25" />
</span>
}
@*<input type="image" name="img" id="@("img_" + row["Column_Id"])" src="~/Images/White-7.jpg" value="@row["Column_Id"].ToString()" width="25" onclick="TestClick(@row["Column_Id"].ToString());" />*@
@*<input type="image" name="img" id="@("img_" + row["Column_Id"])" src="~/Images/tick.png" value="@row["Column_Id"].ToString()" width="25" style="display:none;" onclick="TestClick(@row["Column_Id"].ToString());" />*@
<span style="width: 5%; float: left;">
<img id="@("img_" + row["cid_four"])" src="~/CustomStyles/images/tick.png" onclick="TestClick(@row["cid_four"].ToString());" style="display: none; width:25px;" width="25" />
</span>
</td>
<td style="width:15%;" align="center">
<span onclick="TestClick(@row["cid_four"].ToString());" style="float:left;">
@Html.Hidden("lblC_ID_four", @row["cid_four"].ToString())
@Html.Label("lblC_Name_four", @row["cname_four"].ToString(), new { @style = "width: 100px;" })
</span>
</td>
}
</tr>
}
</tbody>
</table>
</div>
@*@Html.Hidden("input_hidden_field")*@
<input type="text" value="" id="txtHidden" style="display:none"/>
}
@*@Html.HiddenFor(x => row[0], new { @id = "btId" })*@
<style type="text/css">
/*body {
background: whitesmoke !important;
}*/
table {
counter-reset: section;
}
.count:before {
counter-increment: section;
content: counter(section);
}
</style>
<script type="text/javascript">
function TestClick(id) {
debugger;
var imgid = "img_" + id;
var j = $('#' + imgid).css("display");
if (j == "none") {
$('#' + imgid).css("display", "block");
//all[countImagesWithoutSrc] = id;
//++countImagesWithoutSrc;
}
else {
$('#' + imgid).css("display", "none");
//for (var i = all.length - 1; i--;) {
// if (all[i] === id)
// all.splice(i, 1);
//}
//--countImagesWithoutSrc;
}
var imgs = document.getElementById('dvCategoryResults').getElementsByTagName('img');
var countImagesWithoutSrc = 0;
var all = new Array();
var curImg;
for (var i = 0; i < imgs.length; i++) {
curImg = imgs[i];
if ($(curImg).css('display') != 'none') {
var newVal = curImg.id.substring(4, curImg.id.length);
all[countImagesWithoutSrc] = newVal;
++countImagesWithoutSrc;
//alert(all[i]);
}
}
$('#txtHidden').val(all);
//alert($('#txtHidden').val());
}
$(document).ready(function () {
$('#DisplayGrid').DataTable({
"paging": true,
"lengthChange": true,
"searching": true,
"ordering": true,
"info": true,
"autoWidth": false
});
});
</script>