ajax

jquery ajaxStart not working

If you click on the click here to order button here: http://www.game onglove.com/ gog/ test3.html, and then click the same button on the lightboxed window that pops up, an ajax request will run using $.post(). You can hit "continue shopping" to return to the previous lightboxed window to quickly start over. If I execute the jquery code...

Filtering GridView with AJAX (ASP.NET/C#)

Hi all, I'm looking to allow users to filter a GridView (with its contents coming from a datasource) by typing in text, and the GridView should refresh without a postback to display only rows where a certain column matches the text. I think I know to do this by causing a postback, thus a reselect from the datasource, but is there an AJA...

Dynamic filtering, am I doing it wrong?

Hi, So I have an umbraco site with a number of products in it that is content managed, I need to search/filter this dataset on the front end based on 5 criteria. I'd estimate I will have 300 products. I need to filter this data very fast and hide show options that are no longer relevant based on the previous selections. I'm currently ...

make menu like skype?

How do you make a menu like http://www.skype.com/ (Mouse over the menu and the menu appears...) ...

Wicket: AjaxLazyLoadPanel hangs after rendering first panel

I'm using a Wicket AjaxLazyLoadPanel to render a list of items (each is its own panel). It works fine except when you navigate to the page in a fresh browser session (start browser up, go straight to this page without visiting any other pages in the app). When you do this, it renders the first item, but shows wait indicators for the ot...

Making a POST to Google chart API with AJAX

HI all, i'm trying to use google chart API to make some charts in a website using ajax (don't what to reload the page). But i'm having a problem. I have to use POST to make the requests but i don't known if ajax allow this. For example: var xmlhttp=new XMLHttpRequest(); xmlhttp.open("POST","http://chart.apis.google.com/chart?",true); ...

javascript mvc and ajax form submitting..

I just started to investigate mvc on javascript client side (JavaScript MVC). Everything looked great until I got to form submitting :) View part won't do it, that's simple. Event is attached in Controller, so Controller is good place to validate form data, but I'm not sure I want my Controller to know specific server address (were to po...

ajax dropdown with clientside filtering capability

Can any one provide me an idea about any ajax control which has following capabilities: User should able to type to get auto-suggestions Dropdown should only display the values starting with the keyed-in characters. Most importantly there should be only one postback to fetch all the data to client side on the first key-in and then shou...

Rebind gridview using AJAX (without post back)

Hi, I plan on allowing a user to open a modalpopupextender containing a gridview witha Filter text box. I want it so when the user types in a filter, the filter is applied to the gridview and the contents of the gridview is then updated to reflect the applied filter - all without posting back. Also ideally the gridview will be filtered a...

ExtJS vs. jQueryUI

I recently had the experience of doing the same thing (a search combo box) with jquery and extjs. I found extjs to be buggy and overly complex. On the contrary, I found jquery to work very well and be very simple. I am wondering what are other people's experiences of using extjs. Does extjs complexity actually buy you something? ...

Storing data in MySQL Server Database using AJAX

I'm very new at using JS and AJAX. Currently I'm working with Google Maps API and I need to store some locations (lat,long) to the server. What I want to do is store some sort of data in my existing MySQL database in server. I have got some good example as well like the following- http://www.tutorialspoint.com/ajax/ajax_database.htm N...

Questions on practical usage of ajax with jquery

I'd been reading up on implementing ajax with jquery. Am I right to say, $.ajax() is the only function we ever need? ie. we don't actually need the $.get $.post functions? Lastly, lets say we're building this ajax form, we should bind the $.ajax function to a submit button using .click? We don't actually need to enclose the button in a...

Synchronizing loading js files with ajax calls and loading js files with <script> tag

Dear all, consider this: core.js: var core = { all:{}, load: function(jsUrl) { $.ajaxStup({async, false}); $.getScript(jsUrl); }, init: function () { $.getJSON('someurl', function(data) { for(key in this.all) ...

Make an AJAX call after AJAX file uploader is complete?

I am trying to find an AJAX File uploader to use, I think i may go with this on below: http://valums.com/ajax-upload/ The issue i am having is that i cannot figure out how to make a jQuery AJAX call when the uploader has finished uploading the file. Is this possible? I don't have to necessarily use this specific uploader. ...

Using jQuery validate to upload a form, using ajax in the submitHandler()... not working

I am using jquery validate with a form. I want to submit the form using ajax. When I put the ajax call in validate's submitHandler() The browser hangs. What's going on? The error message I get when I enable the validate method's debug is: uncaught exception: [Exception... "Illegal operation on WrappedNative prototype object" nsr...

How to send JSON object to asp.net web service and process the data there?

Hi, I am using the local database in web kit browsers and to get the data from the database I have the following code: function synchronise() { myDB.transaction( function (transaction) { transaction.executeSql("SELECT * FROM Patients;", [], synchroniseHandler, errorHandler); } ); With I am trying to do...

Why my AJAX contact us not working in google chrome

this is my website i develop http://alessandro.babonmultimedia.com/ when we clicked at contact (navigation at top), there will be contact us form loaded via jquery AJAX, the question is: when we click submit, it will sending mail. this is work in Firefox 3.6.1, but in google chrome 7.0.517.41 the submit button do nothing.. why th...

Accessing a node-set in a JavaScript XPath query

I have a real simple question that I can't seem to find an answer to. I want to compress two XPath statements (that are getting attribute values). I learned about the | operator, hearing how it returns node sets. var getdata = xmldoc.evaluate ( '/foo/bar[@world=\''+hello+'\']/child::*/attribute::name |/foo/bar[@world=\''hello+'...

Jquery: how to capture the click event that is NOT in the region of <div>?

Hi, I am using the to implement a popup window using zIndex... things work well but I want to implement a function, that is when user click any region that is outside of the popup div, the div will be closed, how to do that? Bin ...

Need help with uploading files using the Valums ajax upload script

No matter what I change in this script, when I go to upload the file, the page is looking for the action do-nothing.htm. This is what the ACTION of the plugin is set to in the downloaded example, but I have changed it. I have also changed some lines in the Javascript to see if I could get something working, but nothing. In fact I can't...