19 lines
479 B
JavaScript
19 lines
479 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)
|
||
|
|
$("#fishingBoatEditModal").modal('show');
|
||
|
|
},
|
||
|
|
error:function(){
|
||
|
|
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|