Cita:
Iniciado por pateketrueke Excelente, es bueno tener parte del contexto.
Ahora, ¿en que código está la instrucción $xajax->processRequest()?
eso esta en la clase de funciones xajax:
Código PHP:
<?php
//clase padre
require_once("class_funciones_inc.php");
// CLASE DE XAJAX
class procesos extends funciones
{
private $xajax;
public $xajax_js;
//----------------------------------------------------------------------------------------------------------------------
//INICIANDO XAJAX
public function iniciar_xajax()
{
//xajax
require_once("xajax/xajax_core/xajax.inc.php");
$this->xajax = new xajax();
//registro de funciones
$this->xajax->register(XAJAX_FUNCTION, array('colocar_usuario_logia', $this, 'colocar_usuario_logia'));
$this->xajax->register(XAJAX_FUNCTION, array('verificar_cuadro', $this, 'verificar_cuadro') );
$this->xajax->register(XAJAX_FUNCTION, array('agregar_campo_puestos', $this, 'agregar_campo_puestos'));
$this->xajax->register(XAJAX_FUNCTION, array('agregar_campo_visitantes', $this, 'agregar_campo_visitantes'));
$this->xajax->register(XAJAX_FUNCTION, array('agregar_campo_disculpados', $this, 'agregar_campo_disculpados'));
$this->xajax->register(XAJAX_FUNCTION, array('agregar_campo_planchas', $this, 'agregar_campo_planchas'));
$this->xajax->register(XAJAX_FUNCTION, array('preview', $this, 'preview'));
$this->xajax->processRequest();
$this->xajax_js = $this->xajax->getJavascript('includes/xajax/');
//$this->xajax->setFlags(array('debug'=>true,'outputEntities'=>true));
}
... hay otro codigo abajo
}