hello, i have the following code: ... <%= form_remote_tag(:url => {:action => ''ajax_add_keyword''},#''check_update'', :id => @product}, :update => ''Formular'') %> <div id="Formular"> ... ... <%= text_field(''keyword'',''name'') %> <%= submit_to_remote ''button_keynew'',''Neu'',{ :url => {:action => ''ajax_add_keyword'', :id => @product}, :update => ''Formular'', :loading => "new Effect.Fade(''keywordliste'')", :complete => "$(''keywordliste'').style.display=''none''; new Effect.Appear(''keywordliste'')" } %> ... ... </div></form> ... the loading-event starts correctly. Also the :action in rails was worked through completly. But afterwards the DIV in IE wasn''t updated !!! Only in IE it doesn''t work. Firefox and Safari is ok. Debugging in IE is turned on. I would be very very very greateful if you could help me. Thank you, john -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Michael Siebert
2006-Sep-15 11:49 UTC
Re: Problems with Ajax & Internet Explorer(submit_to_remote_tag)
i experience the same thing and dont know what is going on, too 2006/9/15, John <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>:> > > hello, i have the following code: > > ... > <%= form_remote_tag(:url => {:action => > ''ajax_add_keyword''},#''check_update'', :id => @product}, > :update => ''Formular'') > %> > > <div id="Formular"> > > ... > > ... > <%= text_field(''keyword'',''name'') %> > <%= submit_to_remote ''button_keynew'',''Neu'',{ > :url => {:action => ''ajax_add_keyword'', :id => @product}, > :update => ''Formular'', > :loading => "new Effect.Fade(''keywordliste'')", > :complete => "$(''keywordliste'').style.display=''none''; new > Effect.Appear(''keywordliste'')" > } %> > ... > > ... > </div></form> > ... > > the loading-event starts correctly. Also the :action in rails was worked > through completly. But afterwards the DIV in IE wasn''t updated !!! > Only in IE it doesn''t work. Firefox and Safari is ok. Debugging in IE is > turned on. > > I would be very very very greateful if you could help me. > Thank you, john > > -- > Posted via http://www.ruby-forum.com/. > > > >-- Michael Siebert <info-norLuBQQNv0t+8dGM1inlw@public.gmane.org> www.siebert-wd.de - Gedanken lesen www.stellar-legends.de - Weltraum-Browsergame im Alpha-Stadium --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---
Sergey Kuznetsov
2006-Sep-15 13:39 UTC
Re: Problems with Ajax & Internet Explorer(submit_to_remote_tag)
I had the same with remote_function and radio buttons. It worked perfectly with FF but not with IE. In case of IE I had to click the mouse button and only then it updates. I changed radio buttons to combo box and remote_function to event based observe_field and everything works just perfect in IE and FF. All the Best! Sergey. Michael Siebert wrote:> i experience the same thing and dont know what is going on, too > > 2006/9/15, John <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org > <mailto:rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>>: > > > hello, i have the following code: > > ... > <%= form_remote_tag(:url => {:action => > ''ajax_add_keyword''},#''check_update'', :id => @product}, > :update => ''Formular'') > %> > > <div id="Formular"> > > ... > > ... > <%= text_field(''keyword'',''name'') %> > <%= submit_to_remote ''button_keynew'',''Neu'',{ > :url => {:action => ''ajax_add_keyword'', :id => @product}, > :update => ''Formular'', > :loading => "new Effect.Fade(''keywordliste'')", > :complete => "$(''keywordliste'').style.display=''none''; new > Effect.Appear(''keywordliste'')" > } %> > ... > > ... > </div></form> > ... > > the loading-event starts correctly. Also the :action in rails was > worked > through completly. But afterwards the DIV in IE wasn''t updated !!! > Only in IE it doesn''t work. Firefox and Safari is ok. Debugging in > IE is > turned on. > > I would be very very very greateful if you could help me. > Thank you, john > > -- > Posted via http://www.ruby-forum.com/. > > info-norLuBQQNv0t+8dGM1inlw@public.gmane.org> > > www.siebert-wd.de <http://www.siebert-wd.de> - Gedanken lesen > www.stellar-legends.de <http://www.stellar-legends.de> - > Weltraum-Browsergame im Alpha-Stadium > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk -~----------~----~----~----~------~----~------~--~---