[SOLUCIONADO]Disparar evento automaticamente desde ef_editable

Se soluciona llamnado el evento en el mismo JS

echo "
{$this->objeto_js}.ini = function (es_inicial) {
this.ef(‘lugres_docente’).input().onkeyup = function(tecla) {
if (tecla.which == 13) {
{$this->objeto_js}.evt__lugres_docente__procesar (es_inicial);
//this.set_evento(new evento_ei(‘filtrar’, true, ‘’ ));
}
}
}

          {$this->objeto_js}.evt__lugres_docente__procesar = function(es_inicial) {
            var asistencia_registrada = asistencia_js[0];
            if (! es_inicial && ! asistencia_registrada) {
                this.set_evento( new evento_ei('filtrar', true, '' ));
            }
          }

";