[jQuery] Re: setData and extraParams problem

2009-08-28 Thread pankaj sharma
Hi Joern, I found one thing while debugging. If I changed this code "var fieldname = this.id;" To "var fieldname = this.id.replace(/([{}])/g, '\\$1');" Above fieldname values may come in this format: xyz or abc{1} or mnp{2} Then the previous working application (old jquery) is also got break.

[jQuery] Re: setData and extraParams problem

2009-08-25 Thread pankaj sharma
Thanks Jorn for your response. I have recently working on this. I could not found the exact version from the file jquery.autocomplete.js . At the top of the .js its as follows. What is the way to get the version? /* * jQuery UI Autocomplete @VERSION * * Copyright (c) 2007, 2008 Dylan Verheul,

[jQuery] Re: setData and extraParams problem

2009-08-20 Thread Jörn Zaefferer
What exact version of the autocomplete plugin are you using? Have you tried autocomplete("option", "extraParams", ...) instead of setData? Jörn On Sat, Aug 8, 2009 at 6:19 PM, pankaj wrote: > > Actually this part was working previously.I found one difference here, > maybe that help us to find o

[jQuery] Re: setData and extraParams problem

2009-08-08 Thread pankaj
Actually this part was working previously.I found one difference here, maybe that help us to find out the actual root cause. Please let me know if any of you are aware of this issue. Here is OLD and NEW difference of calling auto-completion. ===