15 lines
403 B
JavaScript
15 lines
403 B
JavaScript
let files = [];
|
|
|
|
$(document).on('click', '#addNoticeBtn', function (){
|
|
getEditModal(null, "PLB001")
|
|
})
|
|
|
|
$(document).on('click', '.planTr', function (){
|
|
$(".trChkBox").prop("checked", false);
|
|
$(this).find(".trChkBox").prop("checked", true);
|
|
getViewModal(Number($(this).find(".planKey").val()), "PLB001");
|
|
})
|
|
|
|
$(document).on('click', '#saveBtn', function (){
|
|
savePublicBoard("noticeEditForm")
|
|
}) |