[jQuery] Problem Firing AutoComplete in JQUERY

2008-09-18 Thread aimhier
Autocomplete is not fired for a textfield when the field is loaded using ajax but the is fired when the same field is loaded directly. Is there any issue that needs to be resolved regarding the same.

[jQuery] Multiple autocomplete

2008-09-21 Thread aimhier
Now, I want to use 2 autocompletes in the same form. What I am doing is i am passing the input textfield filled using autocomplete as an extra parameter while passing the auto compete for the second form. However, I only pass a blank(the default value of parameter1 when it was loaded initially not

[jQuery] Re: Multiple autocomplete

2008-09-21 Thread aimhier
; <[EMAIL PROTECTED]> wrote: > Try: > > $("#secondfield").autocomplete("url", { > extraParams: { > firstfield: function() { > return $("#firstfield").val(); > } > } > > }); > > Jörn > > On Sun, Sep 21, 20

[jQuery] Passing Functions in Extraparameters autocomplete

2008-09-21 Thread aimhier
extraParams: { customere: function(){ return $('#customere').val(); }, }, the query takes the the value of parameter "customere" as " function() { return $(' ". Any help regarding the same... Thanx

[jQuery] Re: Multiple autocomplete

2008-09-21 Thread aimhier
MAIL PROTECTED]> wrote: > So, does that work? Whats happening? > > Jörn > > On Sun, Sep 21, 2008 at 2:43 PM, aimhier <[EMAIL PROTECTED]> wrote: > > > It takes "function () { return $("" as an arguement to firstfield... &g

[jQuery] Re: Multiple autocomplete

2008-09-21 Thread aimhier
(($("#customere").val()).length==0) return; $("#editcustomers").ajaxStart(function(){ $("#editcustomers").html(" wrote: > Could you post a testpage? > > Jörn > > On Sun, Sep 21, 2008 at 3:42 PM, aimhier <[

[jQuery] Problem manipulating data in part loaded by AJAX

2008-09-24 Thread aimhier
I am using a form statement. Consider, a form with an input statement with id="id1" statement. When the value of id1 changes ajax is fired which loads a modified form with a new textfield with id say id2. Now, the js fragment in the file which was $ ('#id2').blur("Actions..") is not executed.

[jQuery] Re: Problem manipulating data in part loaded by AJAX

2008-09-24 Thread aimhier
I found the solution on your forum. Sorry for bothering.

[jQuery] Suspending Requests in JSUGGEST

2008-10-17 Thread aimhier
I am using JSuggest for autocompleting fields. Now if I go on typing the characters in the field, for every character that i type a request is made. Thus, a new request is made before the old one is serviced. Can anything be done such that all the old requests are suspended and only the new reques

[jQuery] Re: Adding a double click event to a form element

2008-10-17 Thread aimhier
You can do this- Set the field to readOnly by setting value of readOnly=true Then, bind action of $("#field").dbclick(function(){ set readOnly to false }); and then change it. See if your purpose is met.

[jQuery] Need Help with Serializing Ajax Calls

2008-10-18 Thread aimhier
I am using AjaxManager and I modified the JSuggest Plugin and set the option to abortOld so that it aborts all old requests. However, the older requests are not aborted. The fragment of the code for declaration $(function() { var ajaxManager1 = $.manageAjax({manageType: 'abortOld', maxReq: 0}); .

[jQuery] Help in Autocomplete

2008-10-28 Thread aimhier
I am using firebug to debug my js and i am getting the following error. value.replace is not a function http://localhost/rentalphase2/jquery.autocomplete.js Line 409 Firebug is showing my return from the script as letssene letssen letssenee letsseneee letssen Adding New Customers which impl

[jQuery] Help with google chart

2008-10-30 Thread aimhier
I want to scale the line graph according to the maxvalue and the minvalue so that the graph is appropriate with respect to scale. Any help how can I do this. I mean if the maxvalue is 10 and minvalue is 0 then I want the graph range to be 0-10 and not 0-100 which it is present(thats my interpreta