FAISP/src/main/resources/static/js/faStatistics/fishingBoatMgt.js

30 lines
740 B
JavaScript

$(document).on('click', '#getFishingBoatEditModalBtn', function (){
getFishingBoatEditModal(null, null);
})
function getFishingBoatEditModal(fbKey, cdsKey){
$.ajax({
url: '/faStatistics/fishingBoatEditModal',
data: {fbKey: fbKey, cdsKey: cdsKey},
type: 'GET',
dataType:"html",
success: function(html){
$("#fishingBoatEditModalContent").empty().append(html)
$(".dateSelector").datepicker({
format: "yyyy-mm-dd",
language: "ko",
autoclose: true
});
$(".timeSelector").datetimepicker({
datepicker:false,
format:'H:i',
lang:'kr',
step:20
});
$("#fishingBoatEditModal").modal('show');
},
error:function(){
}
});
}