|
|
/**
|
|
|
* @author Jose Antonio Sal y Rosas Celi
|
|
|
* @contact: jose.salyrosas@jro.igp.gob.pe, arturo.jasyrc@gmail.com
|
|
|
*/
|
|
|
|
|
|
$(document).on('ready',function(){
|
|
|
$('#listProfiles').change(function() {
|
|
|
if($(this).val() != -1){
|
|
|
location.href="/abscontrol/view/" + $(this).val();
|
|
|
}
|
|
|
});
|
|
|
$('.activeOverJRO').click(function() {
|
|
|
profile_id = $('input[name=txtProfileId]').val();
|
|
|
pattern_id = $('input[name=txtPatternId]').val();
|
|
|
field_Id = $(this).attr("id");
|
|
|
antenna_id = $('input[name=txtAntenna'+field_Id+'Id]').val();
|
|
|
result_url = "/abscontrol/"+profile_id+"/"+pattern_id+"/overjro"+field_Id+"/"+antenna_id+"/";
|
|
|
//location.href=url
|
|
|
///*
|
|
|
$.ajax({
|
|
|
url: result_url,
|
|
|
cache: false,
|
|
|
beforeSend: function(){
|
|
|
},
|
|
|
success: function(){
|
|
|
$('#PictureOverJRO'+field_Id).load(result_url);
|
|
|
},
|
|
|
});
|
|
|
///*
|
|
|
});
|
|
|
$('#lnkSaveImport').click(function(){
|
|
|
$('#frmImportProfile').submit();
|
|
|
});
|
|
|
$('#lnkUpload').click(function(){
|
|
|
$('#frmImport').submit();
|
|
|
});
|
|
|
$('#lnkExport').click(function(){
|
|
|
profile_id = $(this).attr("alt");
|
|
|
location.href="/abscontrol/export/" + profile_id + "/";
|
|
|
});
|
|
|
$('#lnkSendFile').click(function(){
|
|
|
profile_id = $(this).attr("alt");
|
|
|
location.href="/abscontrol/send/" + profile_id + "/";
|
|
|
});
|
|
|
$('#lnkChangeProfile').click(function(){
|
|
|
$('#frmProfile').submit();
|
|
|
});
|
|
|
$('.lnkChangePattern').click(function(){
|
|
|
profile_id = $("input[name=txtProfileId]").val();
|
|
|
pattern_id = $("input[name=txtPatternId]").val();
|
|
|
|
|
|
location.href="/abscontrol/change/"+profile_id+"/"+pattern_id+"/";
|
|
|
});
|
|
|
});
|