I have a problem with the clock... if i put this work fine:
Code:
function funcionBuscar () {
// Poner reloj
clockWait(0,cPanel);
// Inicializar datos
storeStock.removeAll();
// Buscar STOCK mediante JSP stocksql.jsp
Ext.Ajax.request({
url: "http://localhost:4444/FV/jsp/aplicacion/existencias/stocksql.jsp?keyMarca=" + keyMarca
+ "&keySubMarca=" + keySubMarca
+ "&keyModelo=" + keyModelo
+ "&keySerie=" + keySerie
+ "&keyTipoStock=" + keyTipoStock
+ "&keyCodigo=" + keyCodigo,
method: "GET",
callback: function (options, success, response) {
storeStock.loadData(eval(response.responseText));
// Quitar reloj
clockWait(1,cPanel);
}
});
}
But, if i change the position of the clock, don