No. I just call an ajax method with asycn=false
--------------------------------------------------
divTarget = "component1"
jQuery.ajax({
                                type: "post",
                                url: url,
                                data: pars,
                                async: false,
                                dataType: "html",
                                success: function(data){
                                        
jQuery("#divPoblacion_"+divTarget).get()[0].innerHTML=data;
                                }
        });
-----------------------------------------

On 28 ago, 11:16, Renato Formato <[EMAIL PROTECTED]> wrote:
> oscar esp ha scritto:
>
> > Hi Jeffry ,
>
> > I am agree about VS.
>
> > When I execute without VS I get better performance obiuslly however
> > 1.1.2/1.1.3  is faster thatn 1.1.4:
>
> > -1.1.4 : 2 seconds (from select an item in client after the second
> > combo is load in client)
> > -1.1.2 & 1.1.3:  less thant 1 second (from select an item in client
> > after the second combo is load in client) .
>
> Are you calling the clone function inside your code?
>
> in 1.1.4 clone is much slower.
>
> Renato

Reply via email to