JQuery :: Autocomplete Remote Data Race Condition
Apr 9, 2010
I've started working with the jQuery UI 1.8 Autcomplete recently with remote data. I was pleased with the ease of initial implementation, but before long I ran into a classic race condition.As I type, the search query gets more specific, so it takes less time for the server respond. As a consequence, it is possible for the old response to arrive after the most recent one. Obviously, this is producing undesirable effects.I'm a little frustrated that the plugin doesn't have a way to manage this. To me, it seems that it makes the "basic" remote data implementation unreliable in most real-world situations. It also seems as though this would be a common problem, but I've found very little literature on it.
I've found that autocomplete is a relatively new addtion to jQuery UI, so I've put the frustration aside and started my own widget which extends autocomplete to solve for three things: 1) race conditions; 2) animated open/close; 3) caching.The nature of this post is two-fold. Not only to share information I've gathered on the topic of race conditions with others who might be having the same trouble, but to (hopefully) gain some insight to how other people are solving for this.The first piece of this puzzle was that $.ajax() (and related methods) return an XMLHTTPRequest instance. As described at stackoverflow.com, this grants us the ability to use XMLHTTPRequest.abort() method. So I just keep a handle to the XMLHTTPRequest instance, and if it exists, call abort() before the next request is made.Using a firebug, I could see that the requests were being aborted as expected and the symptoms of the race-condition ceased. So far, so good... then I got to IE. Not so much.In IE, I was seeing run-time errors. The odd thing is that the run-time errors seemed to be coming from deep within jQuery UI, rather than my code yet commenting out the abort() avoided the run-times. After scratching my head for a while, I used the following simplified code to shed some light on the situation:[code]
In Firefox and Chrome, behavior is as expected - no alert box. However, in IE6 and IE8 (IE7 untested at this time), the success handler still fires! As it turns out, the run-time errors were because the response was undefined as it got passed through my success code path. My next thought was, "maybe I can just evaluate textStatus". Unfortunately, it turns out (as seen in the alert box) it contains the string "success".
View 3 Replies
ADVERTISEMENT
Nov 22, 2011
I am trying to pop up a window and then do stuff(set flags) when the content of the new window is done loading. For this I am trying to detect the window.onload of the pop-up child window but so far I am unsuccessful. I believe my problem is that the URL of child window is on different domain, than the one of the opener(parent) so that the window.onload is not being called. Though this may change, at the moment I do not have access to the code for the page I'm opening up in the pop-up. Im pretty new to web development.
[Code]....
View 3 Replies
View Related
Mar 31, 2011
How much data can be cached in the browser? My records seem to be about 70 characters from roughly 7 columns in my database.
View 4 Replies
View Related
Jul 19, 2010
I am using the jquery autocomplete pugin fromhttp://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
I need to perform an action if no data is returned from the autocomplete search but there seems sto be no way to do that. Any ideas pls?
View 1 Replies
View Related
Mar 23, 2009
Basically i want to grab some data from the royal mail(UK) site, to use within a CMS, so the sales team can easily find the tracking info about a customers order.
Royal mail have recently allowed get requests which populates the track and trace form field and auto submits the page via a 302 redirect e.g.
royalmail.com/portal/rm/track?trackNumber=x
With X being the tracking number. Try: [URL]
(the links above should have www and http etc on but sitepoint won't allow to post them like this because of the spam filters)
So what i would like to do, if it is possible, is to use jquery to grab that page and possible grab a certain paragraph (in this case the first p of the class "track-right-box") so that the sales team don't have to go to the site every time they want to trace the order.
Now a figured i could use $.load or $.get in jquery to do this but firebug is throwing up the error: Access to restricted URI denied" code: "1012
Which i'm guessing is something to do with the security setting on firefox.
View 6 Replies
View Related
Dec 14, 2010
I'm pretty new to jQuery and I'm using $.getJSON to submit some data to a PHP script which either returns 5 sets of json-formatted data or data to indicate an error condition (i.e., no data available) from the PHP database query. The callback routine handles the 5 sets of json-formatted data just fine (using $.each...) but I'm having trouble testing for either just a string with 'null' in it or a json-formatted data return of [{"error":"null"}].
My callback code for the second approach looks like this:
function handle_stores(data) {
if (data.error == "null") .....
But this test does not execute the following code for the 'true' condition, i.e., data.error == "null" never evaluates to 'true'.
View 1 Replies
View Related
Jun 8, 2009
I'd like to learn how data is passed form one file to another and then displaying at when an error occurs. I have this php script that checks if an domain really exist
[Code]...
View 1 Replies
View Related
Oct 29, 2010
I have a coldfusion data component that receives two arguments and runs a stored procedure and returns a large data set. I want to use a textbox with autocomplete its data is that result set. I do not want to convert the result set to an array for performance.
View 1 Replies
View Related
Jan 26, 2011
I made a shortened version of code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script>
<script src="http://www.ylakiudarzelis.lt/js/jquery.validate.js" type="text/javascript">
[code]....
View 2 Replies
View Related
Jul 12, 2011
Example of jquery autocomplete facebook that get data of database?
View 1 Replies
View Related
May 15, 2009
$("#Form").validate({
rules: {
storename_name: {
[code]....
View 1 Replies
View Related
Apr 11, 2011
I am using jquery autocomplete combobox I load more than 25000 data. I set
minLength:3, delay: 700,
When I start typing three characters, in the third character ie8 shows the "Stop running this script" how to handle this huge amount of data
View 1 Replies
View Related
May 4, 2010
Using the [url]. I am not able to find the documentation on usage of parse option in [url]
How to add details like what goes into data,value and result name/value pairs and when to use it.
View 3 Replies
View Related
Sep 28, 2009
Here is what I am trying to do. On my web page, I have three choices for the user to pick from. After the user selects one of the checkboxes and clicks a submit button, I need to send a http request to a remote server to record the user's choices (actually it is an https that I am sending),.. so I need to send something like this.
[URL]
The remote server responds with an xml response that looks like this:
<?xml version="1.0" encoding="utf-8"?>
<sessionState>
<answer>True</answer>
</sessionState>
So, I want to post the request, read the response (answer) back from the other server and display it on my page. So, my dilemma is as follows:
1) my understanding is that I cannot do this with AJAX using an XMLHttp object because it is on a remote server and it would violate some sort of same-domain security. Is that correct? If in fact I can do it in AJAX, how do I read the response back from the other server?
2) if I am correct in my assumption in 1) then what is the best way to accomplish this task?
View 2 Replies
View Related
Apr 20, 2009
I'm about to embark on developing a class which, given a field name and server-side script, will "auto-complete" or "suggest" entries already entered in the database.
View 2 Replies
View Related
Oct 26, 2011
I need an autosuggest/autocomplete script for my field Name.
I search code for that but when I tried it in my webpage it did not work. I used smarty template, php and mysql-adodb.
Is there any syntax that you can suggest for a simple autosuggest the data coming from database?
View 3 Replies
View Related
Aug 11, 2009
Does anyone have a library or patch to call a handler if a user leaves an autocomplete field without choosing one of the autocomplete options - i.e. they've entered free text. I'm working with an app that populates multiple fields from a single auto-complete value, and our latest requirement is to clear out a bunch of fields if the user's entered something manually - rejecting autocomplete suggestions. My initial attempts at hooking into onkeyfoo and onblur haven't lead anywhere productive, and I'm hoping someone else has managed to overcome the gnarly event and timing dependencies involved with onkeyfoo and blur being used for standard autocomplete behaviour.
View 1 Replies
View Related
May 4, 2009
I am new to javascript, I have one question, how can I use javascript to get the IP address of the remote user or remote web browser?
View 9 Replies
View Related
Feb 13, 2010
I have found two jquery plugins and i am trying to combine an action but to no avail. what i want to do is after selecting an item from the auto complete box i would like for it then to do a change function and retrieve details. Here are my 2 pieces of code.
[Code]...
View 2 Replies
View Related
Jan 5, 2012
I am using jquery.validate.js for validating the forms.
The issue now is I have a dropdown list with values. Say a dropdown has the values 'One', 'two', 'Three', 'Four','Five'.
If the value is 'Three' OR 'Four' . The next 2 input fields are required. Else those are not required. The value will be seperated with optgroups.
I tried with different options but I couldnt find the solution. How to validate this?[code]...
View 1 Replies
View Related
Aug 10, 2011
Here is my code
[Code]
But if Condition is not working...
View 2 Replies
View Related
Jul 7, 2011
Following is the code.
On click event it always goes into errorfunctionwith status "undefined".
View 2 Replies
View Related
Jul 27, 2010
Is there a way to combine selectors with && condition. eg: $('.classname div[att=value]') Requirement is to select all div elements with class 'classname' and (&&)an attribute 'att' whose value is 'value'
View 2 Replies
View Related
Feb 10, 2010
How could I add a class to a div that contains a div that contains a link that contains specific text, and name that class based on that link but with hyphens in place of spaces and all lower case? Here's specifically what I'm looking for:
<div class="my-div-one">
h2>Title of this section</h2>
<div class="my-div-something-else"><a href="url">My Special Link</a></div>
</div>
In the above example, I want to add the class my-special-link to my-div-one. Is that possible? How could I do that?
View 1 Replies
View Related
Jan 12, 2011
I'm having trouble with multiple ajax_functions during init phase of code. Pseudo:
ajax_init_global_data();
ajax_init_stuff_1();
ajax_init_stuff_2();
startMainCode();
problem is that these functions seem to pass so fast that ajax queries aren't ready when code passes to startMainCode(). One way I could prevent this is by making ajax_init_global_data() "success" call ajax_init_stuff_1(), and same with stuff_1 -> stuff_2, and finally stuff_2 -> startMainCode().
Still, I was thinking is there a way to write condition in way that when ajax_inits go "success", I could put variables "phase_1_ready = true", "phase_2_ready = true" and "phase_3_ready = true", and finally write something like: if $document.bind(phase_1_ready == true && phase_2_ready == true && phase_3_ready) { startMainCode());
So basically I'm wondering if there is way to bind condition to trigger function, without writing somekind of setTimeout -loop to do the check?
View 5 Replies
View Related
May 25, 2009
[URL] Example on this site u can test what i mean. I want that when all skillpoints are used further click function is disabled or better only works to disable selection to gain again a skillpoint. On current state u can see that when skill counter is at 0, 2 clicks messes up the selection and u can select further on. my code for each icon looks so far like this:
$("#2").toggle(
function () {
if (counter > 0) {
$("#3").attr("disabled", false).fadeTo("fast", 0.50);
[Code]....
View 1 Replies
View Related