Cita:
Iniciado por Alexis88
¿Podrías subir el proyecto a la web para poder probarlo? O quizá podrías subir los archivos comprimidos y generar un enlace de descarga para verlos y analizarlos. Se me ocurre que puedas estar teniendo un problema de conflicto con otros estilos. He utilizado ese autocompletador desde hace siete años y no he tenido ese problema.
Consejo: No toques el archivo generador del autocompletado.
tratare de subirlo pero le puse cero a esta parte del script y se movio
original
Código Javascript
:
Ver originalposition: function(self){
/**
* Sets the width for the options list and positions it
*/
if (self.elem){
self.container.style.width = self.elem.offsetWidth + "px";
self.container.style.left = self.elem.offsetLeft + "px";
self.container.style.top = self.elem.offsetTop + self.elem.offsetHeight + "px";
}
},
agrege cero
Código Javascript
:
Ver originalposition: function(self){
/**
* Sets the width for the options list and positions it
*/
if (self.elem){
self.container.style.width = self.elem.offsetWidth + "0px";
self.container.style.left = self.elem.offsetLeft + "0px";
self.container.style.top = self.elem.offsetTop + self.elem.offsetHeight + "0px";
}
},