Evento Ajax OnClick Image HTML

Hola Muchachos, les quiero consultar lo siguiente:

  1. Creo un campo del tipo Imagen HTML.

  2. A este campo le creo un ejento Ajax OnClick

  3. En este evento inserto el siguiente Codigo

    /**

    • Insert a record on another table
      */

    sc_ajax_message(“Message”, “Title”);

    {datetime_field}=date(“Y-m-d H:i:s”);
    // SQL statement parameters
    $insert_table = ‘inscripcion_alumnos’; // Table name
    $insert_fields = array( // Field list, add as many as needed
    ‘IdUsuario’ => “1”,
    ‘IdInscripcionEstado’ => “1”,
    ‘IdCtrCdCurso’ => {IdCtrCdCurso},
    ‘FechaInscripcion’ => {datetime_field},
    );

    // Insert record
    $insert_sql = ‘INSERT INTO ’ . $insert_table
    . ’ (’ . implode(’, ‘, array_keys($insert_fields)) . ‘)’
    . ’ VALUES (’ . implode(’, ', array_values($insert_fields)) . ‘)’;

    sc_exec_sql($insert_sql);
    }

Cuando lo doy Click, no hace absolutamente nada?, alguna idea de que pasa?
Gracias de ante mano a todos…

Hi , I’m just having the same problem on V 8?
How did you solve it ??
Now if the field is a image Html it’s not possible to add a OnClick event. You can’t see into the field list (onclick list)
Only if the additional field is text you can add code.
Really mysterious… ;-(