after a series of bug fixes plus Non MNO logic for Sender IDs, unfinished leave management and holiday modules
This commit is contained in:
36
public/assets/js/senderid.js
vendored
Normal file
36
public/assets/js/senderid.js
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
$(document).ready(function(){
|
||||
$('#directMno').change(function(tve){
|
||||
tve.preventDefault();
|
||||
// var theIDD = $(this).siblings('.shortCodeEntryRowId').val();
|
||||
var directMnoSelection = $(this).val();
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url: base_url + '/senderids/get-mno-list/' + directMnoSelection,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
async: false,
|
||||
success: function (data){
|
||||
if (data.code === 1) {
|
||||
$('#networkName').empty();
|
||||
$.each(data.result, function(id, row) {
|
||||
// console.log(row);
|
||||
$('#networkName').append($("<option />").val(row.id).text(row.name));
|
||||
});
|
||||
}
|
||||
else if (data.code > 1) {
|
||||
$.alert({
|
||||
title: 'Alert!',
|
||||
content: data.msg,
|
||||
});
|
||||
}
|
||||
else {
|
||||
$.alert({
|
||||
title: 'Alert!',
|
||||
content: 'Your request could not be handled. Try again !',
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user