ajaxCRUD.com

» a PHP class to create / read / update / delete from a database table using AJAX

   by loud canvas media

AjaxCRUD API Reference

<< Reference overview
<< Home

onDeleteFileExecuteCallBackFunction

calls a local function when a file (that was previously uploaded) is deleted
void onDeleteFileExecuteCallBackFunction ( String functionName )

use this function when you want to apply certain logic (or display a certain message) when an (uploaded) file is deleted. Use of this function is similiar in a way to a java interface: you must define a function with the name specifed in the function call.

This function must take ONE parameter (an array). The indexes of this array are the following:

  • id (the id of the row where the file was removed)
  • field (the field for which the file was removed)
  • Details

    Requires setFileUpload, (callback function)
    Type function
    Returns void

    Parameters

    functionName
    name of the local function to be invoked when a file is deleted

    Example

    $table->onDeleteFileExecuteCallBackFunction("deleteDocument");
    
    function deleteDocument($array){
      $id         = $array[id];
      $field      = $array[field];
    
      if ($id != ''){
        $success = qr("UPDATE tblMenu SET 
                 fldURL = '' WHERE pkMenuID = $id");
      }
    }
    

    See also

    New, Edit

     

    "Great api. Really love the demo. "
    ~Ade