ajax

i need to send through the GET method data using the thickbox library and jquery

cause i got some 403 errors ... that's beacuse my server doesn't has enabled the directory listing anybody has done something like that ? thanks. ...

Dealing with incremental server response in AJAX (in JavaScript)

I have AJAX app which updates page based on server response. The command that AJAX server response is based on takes long time to generate full response, but it sends partial information as soon as it is calculated. This partial response / partial info is send in "burst", and time and size of each burst is unpredictable. CGI script (in...

What about task lists and other web parts in Sharepoint?

I have the Ajax working on a custom web part written in Visual Studio and it works fine. Question - I created a task list on the site and added it as a web part to the default page. I would like that web part (task list) to also refresh asynchronously. I have opened it in Sharepoint designer, but I really don't know how to apply Ajax to ...

What do you use for client to server communication with GWT?

GWT RPC is proprietary but looks solid, supported with patterns by Google, and is mentioned by every book and tutorial I've seen. Is it really the choice for GWT client/server communcation? Do you use it and if not why and what you chose? I assume that I have generic server application code that can accommodate for RPC, EJBs, web servic...

C# with Selenium Ajax DropdownList Question

I have two dropdown lists, one containing a list of countries and one for states/regions that is not populated until one of the countries is selected. Both of these dropdowns are wrapped in an updatepanel. When I select the USA, the state dropdown list is filled with the 50 states and I am able to move forward from there. We are using S...

ajax post for django template

HI all, I have a problem when i want to submit value then full page again reload. I want to update my table with asynchronous call, that specific information will be loaded but full page not... plz help me aboput this...thanks ...

Concerned with accordian

hi guys, I have accordian with 3panes.But default when loaded first time,first pane remaines opened.I want to get all panes closed whn loaded first time.Is there any solution to male all panes closed ?Pls help. ...

ajax request with prototype returns 200 success with blank html page (intermittent)

i have a page performing the following ajax request when a button is pressed. normally i get a json object back and it works fine, i have noticed on intermittent requests (usually only the first request from that page), i get back a 200 success code with a blank page. if i reload the html page, then press the button again it works fi...

Force refresh on ajax request?

I have a script which at one point returns an image thumbnail using jquery built in java request. Every time the php function get called, this thumbnail gets updated, but keeps the exact same filename. Problem is that the browser caches the thumbnail and it looks like it never gets updated. Are here any techniques to avoid this? ...

Executing next line after completion of code in Ajax in Jquery

Need Help! I am executing an ajax call inside a function. The result from the Ajax call is the return value of the function. The code is as follows: function tabstrip() { $.ajax({ type: "POST", url: "/WebService/MessageUnratedCount.asmx/GetMessageUnratedCount", data...

Update two same value in html with one ajax response

I have two < span> -tags with the same id in different places om my page. I know it's wrong to use the same ID twice. It's no problem for me to change the id's to class. HTML: <span id="tumme">4</span> ... <span id="tumme">4</span> .... is updated by AJAX: document.getElementById(tumme).innerHTML = xmlHttp.responseText; but on...

How to call this Comets application from a web page

I have implemented the two classes shown at http://tomcat.apache.org/tomcat-6.0-doc/aio.html which gives a messenger application using Tomcat's comet implementation. How do I connect this to a web interface and get something to display. I am thinking these are the basic steps (I don't know the details). I should create some tradition...

Update panel and usercontrols

I have two web user controls nested inside of an update panel. The events inside the user controls do not appear to trigger the panel. For testing, I have set the method the fires to sleep for 3 seconds, and added an update progress panel to the page. The update progress panel never comes up and the page reflashes as usual. The user c...

Ajax Odometer with Prototype?

I saw the cool AJAX odometer on http://odesk.com and thought it could be quite useful to have something similar for one of my sites. I came across this code that is similar (http://tools.uvumi.com/odometer.html), but it is for Mootools and I use Prototype on all of my sites. I'm wondering if something like this has been made to work wi...

Can jQuery do a POST of a ViewModel to a Controller in ASP.NET MVC?

I have my Html Textboxes created so that they will be bound to a custom view model when posting back to the server. <%= Html.TextBox("CustomerFormViewModel.Email")%> This works great if it's a traditional POST. I can then receive it on the Controller side with something like this: [AcceptVerbs(HttpVerbs.Post)] public ActionResult Add...

After adding an AJAX panel, page won't post back.

Hi, I have a C# web form with a search button and some search criteria. But after adding an AJAX panel, the search button won't post back. Any idea? Thanks in advance! ...

Is there a way to make ASP page update in real time, like Ajax?

Is there a way to make ASP page update in real time, like Ajax? ...

Google Language API for Source Code?

I'm 98% sure that Google has an API for detecting the language of CODE blocks, much like this, but for code. I found it before, but I can't seem to find it again. Surprisingly difficult to find. Anyone have a link? ...

How can I use HTML::FormFu for jQuery AJAX form validation?

Are there any examples I can look at that use HTML::FormFu with AJAX form validation and submission? I would really not like to write my validation routines three times (once in JS, once in FormFu constraints, and once in DBIC models), so I'd really like a way that's integrated with HTML::FormFu::Model::DBIC if possible. ...

jquery validate & ajax.beginform

Submitting an Ajax.Beginform while using the JQuery Validate plugin doesn't stop the submission. Is there a good way to ensure the Ajax.Beginform is not submitted? I've also tried using the JQuery Forms plugin to 'ajaxify' my form. This works a treat. However, my form is a login form and if the user successfully logs in, I'd like the...