11/06/2016

PHP : Send Post And Get On Java One Function

PHP : Send Post And Get On Java One Function

Example Code :
  1. function editRPLineAsset(ACTION){
  2.    var str = ACTION;
  3.    var ActionArray = str.split(',');
  4.     //ACTION = 'EDIT-IF' + ',' + "" + ',' + RPLineID;
  5.     //ACTION = ActionArray[0] + ',' + ActionArray[1] + ',' + ActionArray[2] + ',' + "" + ',' + "" + ','+ $('#BudgetNo_field').val();
  6.     ACTION = ActionArray[0] + ',' + ActionArray[1] + ',' + ActionArray[2];
  7.    
  8.     var element = document.getElementById('BudgetNo_field');
  9.     element.value = ActionArray[3];     
  10.    
  11.     $( "#dialog-edit" ).dialog({
  12.         resizable: false,
  13.         width:600,
  14.         height:200,
  15.         modal: true,
  16.         buttons: {
  17.             "Yes": function() {
  18.                                 //Send Get.
  19.                 var target = "rp_line_update.php?ACTION=" + ACTION;
  20.                 var ajaxManager = $.manageAjax.create('lifo', {queue: 'clear', preventDoubleRequests:true, abortOld: true});
  21.                                 //Send Post.  
  22.                 ajaxManager.add({
  23.                     url:target,
  24.                     data: {
  25.                         BudgetNo: $('#BudgetNo_field').val()
  26.                         //BudgetNoEnd: $('#BudgetNoEnd_field').val()
  27.                     },
  28.                     success: function(ret) {
  29.                         $( "#dialog-info" ).find('p').html("แก้ไขรายการเรียบร้อยแล้ว");
  30.                         $( "#dialog-info" ).dialog({
  31.                             resizable: false,
  32.                             width:400,
  33.                             height:180,
  34.                             modal: true,
  35.                             buttons: {
  36.                                 "OK": function() {
  37.                                     window.location.reload();
  38.                                 }
  39.                             }
  40.                         });
  41.                        
  42.                     }
  43.                 });
  44.                 $( this ).dialog( "close" );
  45.             },
  46.             Cancel: function() {
  47.                 $( this ).dialog( "close" );
  48.             }
  49.         }
  50.     });
  51. }

No comments:

Post a Comment