You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/11/21 11:48:11 UTC

svn commit: r477617 - /myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Author: weber
Date: Tue Nov 21 02:48:10 2006
New Revision: 477617

URL: http://svn.apache.org/viewvc?view=rev&rev=477617
Log:
TOBAGO-193 (Ajax request don't work in IE when form has huge content)

Modified:
    myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?view=diff&rev=477617&r1=477616&r2=477617
==============================================================================
--- myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Tue Nov 21 02:48:10 2006
@@ -1598,8 +1598,9 @@
       };
 
       Tobago.action.value = actionId;
-      var url = Tobago.form.action + "?affectedAjaxComponent="
-          + ajaxComponentId + '&' + Form.serialize(Tobago.form);
+      var url = Tobago.form.action;
+      requestOptions.parameters = "affectedAjaxComponent=" + ajaxComponentId 
+          + '&' + Form.serialize(Tobago.form);
 
       //    LOG.debug("request url = " + url);
       Tobago.Transport.request(function() {