9 lines
282 B
JavaScript
9 lines
282 B
JavaScript
$(document).ready(function () {
|
|
$("#EmployeeFullNameModalSinglePrint").text($("#EmployeeFullName").text());
|
|
|
|
});
|
|
|
|
function openModalPrint(id) {
|
|
var goTo = `/AdminNew/Company/EmployeesDocuments/EmployeeList?id=${id}&handler=PrintSingleUD`;
|
|
AjaxUrlContentModal(goTo);
|
|
} |