Files
WrenchBackOffice/application/views/bko/configure/extra/country_form.php
T
CHIEFSOFT\ameye 0ce4088225 Data line
2024-05-27 10:09:59 -04:00

39 lines
940 B
PHP

<div class="panel-heading">
<b>Country</b>
</div>
<form>
<div class="table-responsive">
<table class="table">
<tbody>
<tr>
<td >
<div id="reason_msg"></div>
<?= $country_table ?>
</td>
</tr>
</tbody>
</table>
</div>
</form>
<script type="text/javascript">
<!--
function allowStatus(countyry_code,action){
alert(countyry_code);
$('#allow-'+countyry_code).html('Processing...');
// $('#acc' + countyry_code).prop('disabled', true);
$.ajax({
url: "/confg/allowCountry?countyry_code=" + countyry_code + "&action=" + action
}).done(function (data) {
$('#allow-'+countyry_code).html(data);
// $('#acc' + countyry_code).prop('disabled', false);
});
return false;
}
// -->