Project

General

Profile

Defect #34167

Updated by Go MAEDA over 3 years ago

<pre><code class="javascript"> 
 $(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); 
         } 
     } 
 }); 
 }); 
 </code></pre> 

 I am using a JQuery model form with Ajax to allow users to enter new values and update in text area I put condition statement depend on field value NULL OR NOT NULL after success but when update any field 
 the condition field(note) lost data

Back