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

19 lines
479 B
JavaScript
Raw Normal View History

2022-11-02 06:08:07 +00:00
$(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)
$("#fishingBoatEditModal").modal('show');
},
error:function(){
}
});
}