| Line 17... |
Line 17... |
| 17 |
$(document).ready(function(){
|
17 |
$(document).ready(function(){
|
| 18 |
|
18 |
|
| 19 |
$("input[name$='bEntity']").click(function() {
|
19 |
$("input[name$='bEntity']").click(function() {
|
| 20 |
var test1 = $(this).val();
|
20 |
var test1 = $(this).val();
|
| 21 |
$(".box").hide();
|
21 |
$(".box").hide();
|
| - |
|
22 |
$('input[name=dinNumber]').each(function(){
|
| - |
|
23 |
$(this).prop('disabled', true);
|
| - |
|
24 |
});
|
| - |
|
25 |
|
| - |
|
26 |
var dinNumberInput = $("#sale"+test1+ " input[name=dinNumber]");
|
| - |
|
27 |
if (dinNumberInput.prop('disabled') == true){
|
| - |
|
28 |
dinNumberInput.prop('disabled', false);
|
| - |
|
29 |
}
|
| 22 |
$("#sale" + test1).show();
|
30 |
$("#sale" + test1).show();
|
| 23 |
});
|
31 |
});
|
| 24 |
});
|
32 |
});
|
| 25 |
</script>
|
33 |
</script>
|
| 26 |
|
34 |
|
| Line 57... |
Line 65... |
| 57 |
</script>
|
65 |
</script>
|
| 58 |
|
66 |
|
| 59 |
|
67 |
|
| 60 |
<script type="text/javascript">
|
68 |
<script type="text/javascript">
|
| 61 |
$(document).ready(function(){
|
69 |
$(document).ready(function(){
|
| - |
|
70 |
associateValidator();
|
| 62 |
$("input[name$='insurance']").click(function() {
|
71 |
$("input[name$='insurance']").click(function() {
|
| 63 |
var test1 = $(this).val();
|
72 |
var test1 = $(this).val();
|
| 64 |
$(".doc").hide();
|
73 |
$(".doc").hide();
|
| 65 |
$("#doc" + test1).show();
|
74 |
$("#doc" + test1).show();
|
| 66 |
});
|
75 |
});
|
| Line 101... |
Line 110... |
| 101 |
return jsonObj;
|
110 |
return jsonObj;
|
| 102 |
}
|
111 |
}
|
| 103 |
|
112 |
|
| 104 |
</script>
|
113 |
</script>
|
| 105 |
|
114 |
|
| - |
|
115 |
<style>
|
| - |
|
116 |
.loading-image {
|
| - |
|
117 |
position: fixed;
|
| - |
|
118 |
top: 50%;
|
| - |
|
119 |
left: 50%;
|
| - |
|
120 |
margin-top: -50px;
|
| - |
|
121 |
margin-left: -100px;
|
| - |
|
122 |
z-index: 100;
|
| - |
|
123 |
}
|
| - |
|
124 |
</style>
|
| - |
|
125 |
|
| 106 |
</head>
|
126 |
</head>
|
| 107 |
|
127 |
|
| 108 |
<body>
|
128 |
<body>
|
| 109 |
<div class="container">
|
129 |
<div class="container">
|
| 110 |
<div class="row">
|
130 |
<div class="row">
|
| Line 198... |
Line 218... |
| 198 |
</select>
|
218 |
</select>
|
| 199 |
</div>
|
219 |
</div>
|
| 200 |
|
220 |
|
| 201 |
<div class="form-group float-label-control">
|
221 |
<div class="form-group float-label-control">
|
| 202 |
<label for="landline">Landline</label>
|
222 |
<label for="landline">Landline</label>
|
| 203 |
<input type="text" class="form-control" name="Landline" maxlength = "10" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="Landline">
|
223 |
<input type="text" class="form-control" name="landline" maxlength = "12" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="Landline">
|
| 204 |
</div>
|
224 |
</div>
|
| 205 |
|
225 |
|
| 206 |
<div class="form-group float-label-control">
|
226 |
<div class="form-group float-label-control">
|
| 207 |
<label for="">Mobile</label>
|
227 |
<label for="">Mobile</label>
|
| 208 |
<input type="text" class="form-control" name="mobile" maxlength = "10" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="Mobile">
|
228 |
<input type="text" class="form-control" name="mobile" maxlength = "10" pattern="[0-9]{10}" title="Please enter valid Phone number" placeholder="Mobile">
|
| Line 246... |
Line 266... |
| 246 |
<div class="partnership box" id="salePartnership">Upload <strong>Partnership Deed</strong></div>
|
266 |
<div class="partnership box" id="salePartnership">Upload <strong>Partnership Deed</strong></div>
|
| 247 |
</div>
|
267 |
</div>
|
| 248 |
<div class="limitedcompany box" id="salePrivateLimitedCompany">
|
268 |
<div class="limitedcompany box" id="salePrivateLimitedCompany">
|
| 249 |
<div class="form-group float-label-control">
|
269 |
<div class="form-group float-label-control">
|
| 250 |
<label for="">DIN Number</label>
|
270 |
<label for="">DIN Number</label>
|
| 251 |
<input type="text" class="form-control" name="dinNumber" placeholder="DIN Number">
|
271 |
<input type="text" class="form-control" name="dinNumber" disabled placeholder="DIN Number">
|
| 252 |
</div>Upload <strong>Incorporation certificate,Memorandum & Article of association</strong>
|
272 |
</div>Upload <strong>Incorporation certificate,Memorandum & Article of association</strong>
|
| 253 |
</div>
|
273 |
</div>
|
| 254 |
|
274 |
|
| 255 |
|
275 |
|
| 256 |
<div class="LimitedLiabilityPartnership box" id="saleLimitedLiabilityPartnership">
|
276 |
<div class="LimitedLiabilityPartnership box" id="saleLimitedLiabilityPartnership">
|
| 257 |
|
277 |
|
| 258 |
|
278 |
|
| 259 |
<div class="form-group float-label-control">
|
279 |
<div class="form-group float-label-control">
|
| 260 |
<label for="">DIN Number</label>
|
280 |
<label for="">DIN Number</label>
|
| 261 |
<input type="text" class="form-control" name="dinNumber" placeholder="DIN Number">
|
281 |
<input type="text" class="form-control" name="dinNumber" disabled placeholder="DIN Number">
|
| 262 |
</div>Upload <strong>Registration certificate & partnership Deed</strong>
|
282 |
</div>Upload <strong>Registration certificate & partnership Deed</strong>
|
| 263 |
</div>
|
283 |
</div>
|
| 264 |
|
284 |
|
| 265 |
<div class = "form-group file upload">
|
285 |
<div class = "form-group file upload">
|
| 266 |
<input type="file" accept="application/pdf,image/*" name = "bEntityDoc">
|
286 |
<input type="file" accept="application/pdf,image/*" name = "bEntityDoc">
|
| Line 679... |
Line 699... |
| 679 |
</div>
|
699 |
</div>
|
| 680 |
|
700 |
|
| 681 |
<div class="checkboxes status" id ="shopsemifurnished">
|
701 |
<div class="checkboxes status" id ="shopsemifurnished">
|
| 682 |
<div class="btn btn-default">
|
702 |
<div class="btn btn-default">
|
| 683 |
<label for="success" class="btn btn-success">Flooring<input type="checkbox" name="flooring"
|
703 |
<label for="success" class="btn btn-success">Flooring<input type="checkbox" name="flooring"
|
| 684 |
value ="flooring" id="success" class="badgebox"><span class="badge">✓</span></label>
|
704 |
value ="yes" id="success" class="badgebox"><span class="badge">✓</span></label>
|
| 685 |
<label for="warning" class="btn btn-success">Cieling<input type="checkbox" name="cieling" value="Pantry" id="warning" class="badgebox"><span class="badge">✓</span></label>
|
705 |
<label for="warning" class="btn btn-success">Cieling<input type="checkbox" name="cieling" value="yes" id="warning" class="badgebox"><span class="badge">✓</span></label>
|
| 686 |
</div>
|
706 |
</div>
|
| 687 |
</div>
|
707 |
</div>
|
| 688 |
|
708 |
|
| 689 |
<div class ="checkboxes status" id ="shopfullfurnished">
|
709 |
<div class ="checkboxes status" id ="shopfullfurnished">
|
| 690 |
<div class="row text-center">
|
710 |
<div class="row text-center">
|
| 691 |
<label for="default" class="btn btn-success">Store <input type="checkbox" name="shopStore" value="Store" id="default" class="badgebox"><span class="badge">✓</span></label>
|
711 |
<label for="default" class="btn btn-success">Store <input type="checkbox" name="store" value="yes" id="default" class="badgebox"><span class="badge">✓</span></label>
|
| 692 |
<label for="primary" class="btn btn-success">Washroom <input type="checkbox" name="shopWashroom" value="Washroom"id="primary" class="badgebox"><span class="badge">✓</span></label>
|
712 |
<label for="primary" class="btn btn-success">Washroom <input type="checkbox" name="washroom" value="yes" id="primary" class="badgebox"><span class="badge">✓</span></label>
|
| 693 |
<label for="info" class="btn btn-success">Water Supply<input type="checkbox" name="shopWater" value="Watersupply"id="info" class="badgebox"><span class="badge">✓</span></label>
|
713 |
<label for="info" class="btn btn-success">Water Supply<input type="checkbox" name="waterSupply" value="yes" id="info" class="badgebox"><span class="badge">✓</span></label>
|
| 694 |
<label for="success" class="btn btn-success">Electricity<input type="checkbox" name="shopElectricity"
|
714 |
<label for="success" class="btn btn-success">Electricity<input type="checkbox" name="electricity"
|
| 695 |
value ="Electricity" id="success" class="badgebox"><span class="badge">✓</span></label>
|
715 |
value ="yes" id="success" class="badgebox"><span class="badge">✓</span></label>
|
| 696 |
<label for="warning" class="btn btn-success">Pantry<input type="checkbox" name="shopPantry" value="Pantry" id="warning" class="badgebox"><span class="badge">✓</span></label>
|
716 |
<label for="warning" class="btn btn-success">Pantry<input type="checkbox" name="pantry" value="yes" id="warning" class="badgebox"><span class="badge">✓</span></label>
|
| 697 |
</div>
|
717 |
</div>
|
| 698 |
</div>
|
718 |
</div>
|
| 699 |
|
719 |
|
| 700 |
|
720 |
|
| 701 |
<h4 class="page-header">15. Shop Available At</h4>
|
721 |
<h4 class="page-header">15. Shop Available At</h4>
|
| Line 957... |
Line 977... |
| 957 |
</div>
|
977 |
</div>
|
| 958 |
|
978 |
|
| 959 |
</div>
|
979 |
</div>
|
| 960 |
|
980 |
|
| 961 |
</div>
|
981 |
</div>
|
| - |
|
982 |
</div>
|
| - |
|
983 |
<div id="ajax-spinner" style="display:none;">
|
| - |
|
984 |
<img src="images/loading.gif" class="loading-image">
|
| - |
|
985 |
</div>
|
| 962 |
</body>
|
986 |
</body>
|
| 963 |
</html>
|
987 |
</html>
|
| 964 |
|
988 |
|