similar to: Problems with AJAX and IE6

Displaying 20 results from an estimated 60000 matches similar to: "Problems with AJAX and IE6"

2007 Sep 29
0
Ajax.Updater doesn't work with IE6 properly
My environment is Apache2+php5. The test doc is "ajaxtest.php", which uses Ajax.Updater to load content from /test/test1/inphp.php. It works soomthly in Firefox. But nothing can be displayed in IE6, the brower got no response and the onComplete was not trigered. However, if I put the two doc under the same dir, everything goes well. Or, if I replace the inphp.php with a html doc such as
2006 Jan 18
0
form_remote_tag and 302 redirects under IE6 bug
I believe I''ve found a bug in which a custom HTTP code handler in the code generated by form_remote_tag does not get called under IE6. The below example simply redirects the browser to the value in the location header when it gets back a 302 redirect: #### start code #### <%= form_remote_tag :url => {:action => "comment", :id => @article},
2006 Feb 12
2
link_to_remote (AJAX) and tables: IE issues, validation?
I have a table that lists domain names, with a form next to it to add new domains. I have AJAXified this so that new domains are immediately added as table rows. This works fine in Firefox 1.5/Win, but not in IE6/Win. Domains are added into the database, but the HTML table is not updated unless you reload the page. Some googling tells me there are issues with e.g. link_to_remote updating
2006 Jan 16
8
AJAX + Table.
Hello all. I am trying ot load table rows using AJAX based on a search. The following code results in: 1. Firefox renders correctly (Multiple rows inserted into page). 2. Opera renders the entire returned string in one <td> by the looks of it (Bunched up under first header, the <> tags arne''t visible) 3. IE6 does nothing....great ;) This is driving me nuts so any help
2007 Mar 07
4
Ajax and IE6 - is there some sort of "trick"?
Hi, I''ve got some Ajax stuff that shows more or less of a complex form based on a radio button selection. A "radio_handler" controller action is the action for a form handler. Some seemingly simple "replace_html" fires as a result of different radio buttons being chosen (which should then show more or less of the form). This all works just great on Mac Safari and
2006 Mar 10
1
Maximum size of Ajax partial in Firefox?
Hi, I''m writing an app that has some ajax-y content to it and am experiencing a weird error in Firefox (1.5.0.1) that doesn''t appear elsewhere (where ''elsewhere'' is IE6). I''ve basically taken the typo sidebar code and rewritten it for my needs. One of the things I''ve written is a ''sidebar'' that lists all the countries in
2005 Nov 03
0
sorting and filtering tables using ajax
I have a table in a view of my ruby on rails application which shows records from a database table. The first row of the table contains a table name and buttons to scroll left and right through the pages. The second row contains a form which lets me build up a filter string to use as the '':condition'' parameter of the paginate function in the controller. The third row contains
2006 Apr 27
1
Ajax response won''t display
I''m hopeful that this is something simple i''m missing, but I''ve run out of things to try. It should work just like the example in Agile Web Development with Rails (i think) I send an ajax request using remote_form and it''s processing correctly on the server and returning a new form, but it won''t replace the original. It''s supposed to update a
2006 Apr 16
2
AJAX update of <img> element?
Hi, I''ve been trying to do AJAX updates of an <img> element, but I can''t seem to make it work. Should it be possible to do something like this...? [View] <%= form_remote_tag :url => {:action => ''sendplot''}, :update => ''plot'' %> <%= submit_tag %> <%= end_form_tag %> <img id="plot"
2006 May 12
0
draft-proposal for Ajax.History - History/Bookmark handling in Ajax apps
Hi list, In one of my previous projects I had to satisfy the requirement of handling browser back- and forward calls within an Ajax application. Thus I didn''t get an urge to switch the JS part of this project to an other framework like dojo (which supports Browser history handling out-of-the-box), I had to come up with an idea of doing this with prototype/scriptaculous. The arisen
2008 May 22
4
Autocompleters and Sortables do not function in IE6
I have two issues that I hope someone else has encountered and has a solution for. First: I have several autocompleters on my site, and they function as expected in Firefox, Opera, IE7, but when I use them in IE6, I get no javascript errors for my local autocompleters, and all ajax autocompleters functions are firing as expected and returning the correct search results. The only problem, IE6
2006 May 09
1
AJAX request not setting Accept header
I''m trying to stay DRY and use respond_to as I move to AJAX in my apps, but I''m getting some mysterious behavior. Here''s a simple form I''m testing with: <%= form_remote_tag :url => {:action => ''submit''} %> <%= submit_tag ''Go'' %> <%= end_form_tag %> When I submit the following HTTP request is sent:
2006 Feb 20
1
[Prototype] onSuccess Event and Ajax.Updater bug in IE
Hi all, Is there a known bug with Ajax.Updater not working in IE6? I''m having trouble with a Autocompleter control that calls a function that contains an Ajax.Updater as an AfterUpdateElement callback. It works fine in firefox, but I don''t think Ajax.Updater gets called under IE. http://pastebin.com/563889 1. function updater(input, item) { 2. var
2007 Sep 10
2
form_remote_tag not providing params in Ajax
I''m new to Ruby, Rails and Ajax and I''m trying to do something seemingly simple. I am trying to use a value someone supplies in a form in another form that is dynamically generated using Ajax. I have the following code: <div id="race_table"> &nbsp; </div> <%= form_remote_tag(:update => "race_table", :url => { :action =>
2006 Mar 13
2
Prototype ajax/javascript q
I''m trying to send to my application the coords x,y on an "input type image" in a html form, but x,y variables are not present in the POST_DATA (are not submitted). Any other field (hidden inputs) are being sent when I click on the image input form field. I use rails 1.0 and prototype 1.4, browsers Seamonkey 2.0, Firefox 1.x and Konqueror, Linux, and I''m just a
2006 Apr 29
0
Trouble with firefox and AJAX
I''ve been creating my own message board in rails as a learning exercise. I''m currently trying to implement posting using AJAX, so the topic page as a whole doesn''t need reloading. What I''ve written works as epected in IE6 and Safari, but the AJAX call fails silently in Firefox 1.5 -- although the server has logged the request, the "success" callback
2005 Dec 29
2
Ajax.Request: onLoading executed after onComplete in IE
Hi, i''m trying to use a visual indicator for my Ajax requests. It''s based on the shopping cart demo at script.aculo.us and works great in Firefox, Konqueror and Opera, but fails in IE6. For some reason (timing problems?) onComplete is executed before onLoading, so the indicator is shown but not hidden when the request has finished. Oddly enough it works fine in the shopping
2006 Feb 21
1
RE: [Prototype] onSuccess Event and, Ajax.Updater bug in IE
Joe, After removing all occurrences of charset=utf-8 from my headers I am still getting the same bug in IE. Currently, it''s Content-Type: text/html Any other suggestion? Nathan. > Message: 2 > Date: Mon, 20 Feb 2006 09:13:57 -0500 > From: "Joe Hudson" <joe-x8g0hQFNjJhWk0Htik3J/w@public.gmane.org> > Subject: RE: [Rails-spinoffs] [Prototype] onSuccess Event
2008 Jan 01
2
Ajax.Updater from within an IFrame
Hello together. I''m trying to call an Ajax.Updater from within an IFrame to update an element in the parent window. It is working, but I receive an error from Firefox when I do so. What I want to do is to upload a file, and then after the file has completed uploading, automatically reload a section of the page with information about the file to post-process it. However, AJAX
2006 Apr 19
1
AJAX, Response codes and Opera.
Hello all. I am in the following situation. I page made up of a few divs and a form using form_remote_tag like so: <%= form_remote_tag :update => { :failure => ''content'', :success => ''body'' }, :url => { :controller => ''server'', :action => ''create'', :client_id => params[:client_id] } -%> <%=