$(document).on(‘click’, ‘.update’, function() { var user_id = $(this).attr("id"); $.ajax({ url: "fetch_single.php", method: "POST", data: { user_id: user_id }, dataType: "json", success: function(data) { $(‘#userModal’).modal(‘show’); $(‘#name’).val(data.name); $(‘#status_id’).val(data.status_id); $(‘#note’).val(data.note); $(‘#note_tow’).val(data.note_tow); $(‘#note2’).val(data.note2); $(‘#note3’).val(data.note3); $(‘#payment’).val(data.payment); $(‘#ntg_no’).val(data.ntg_no); $(‘.modal-title’).text("تعديل الحالة"); $(‘#user_id’).val(user_id); $(‘#action’).val("Edit"); $(‘#operation’).val("Edit"); if ($("#note").val() !== ”) { $("#note").prop("disabled", true); } else { $("#note").prop("disabled", false); } } }); }); I am ..
Read more
Recent Comments